diff --git a/src/app/embodiment-circle/page.tsx b/src/app/embodiment-circle/page.tsx index 19e7a5a..9a78439 100644 --- a/src/app/embodiment-circle/page.tsx +++ b/src/app/embodiment-circle/page.tsx @@ -17,7 +17,7 @@ export default function EmbodimentCircle() { Pricing Join Today @@ -53,7 +53,7 @@ export default function EmbodimentCircle() {

Join Today @@ -487,7 +487,7 @@ export default function EmbodimentCircle() {
Join Today @@ -569,6 +569,80 @@ export default function EmbodimentCircle() {
+ {/* Choose Your Tier */} +
+
+

+ Choose Your Tier +

+ +
+ {/* Community Member - Free */} +
+
+

Community Member

+
Free
+

+ For everyone who has participated in an event, workshop, or group program with Nusqool, + our partners and faculty. Joining as a community member gives you access to our community + chat threads, including a channel to share your acts of kindness and witness other acts of + kindness in the community. You are invited to upgrade into a Friends of Nusqool or + Embodiment Circle membership to access the weekly events and programs offered at Nusqool. +

+
+
+
+ + {/* Embodiment Circle Participant */} +
+ + Popular + +
+

Embodiment Circle Participant

+
CA$1,010.00
+

+ A 12-week celebration and practice space for being fully yourself — held with safety, + creativity, and community by 18 extraordinary facilitators. +

+

+ For the scholarship application, please complete{" "} + + this google form + {" "} + and we'll send you a discount code to continue your registration. +

+
+
+

One Time

+

CA$1,010.00

+
+
+

Installment Plan (Monthly)

+

CA$88.00 / mo for 12 months

+
+
+
+ +
+
+
+
+ {/* Final CTA */}
@@ -579,7 +653,7 @@ export default function EmbodimentCircle() { The next Embodiment Circle begins January 18, 2026

Join Today diff --git a/src/middleware.ts b/src/middleware.ts new file mode 100644 index 0000000..bac8838 --- /dev/null +++ b/src/middleware.ts @@ -0,0 +1,17 @@ +import { NextResponse } from "next/server"; +import type { NextRequest } from "next/server"; + +export function middleware(request: NextRequest) { + const hostname = request.headers.get("host") || ""; + + // Redirect dandylion.nusqool.com root to /embodiment-circle + if (hostname.includes("dandylion.nusqool.com") && request.nextUrl.pathname === "/") { + return NextResponse.redirect(new URL("/embodiment-circle", request.url)); + } + + return NextResponse.next(); +} + +export const config = { + matcher: ["/"], +};