From 352c15e19db6d91d675943f01e0acb675007b2cb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 00:32:45 +0000 Subject: [PATCH 1/2] Add src/app/join/page.tsx --- src/app/join/page.tsx | 97 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 src/app/join/page.tsx diff --git a/src/app/join/page.tsx b/src/app/join/page.tsx new file mode 100644 index 0000000..e39dfe7 --- /dev/null +++ b/src/app/join/page.tsx @@ -0,0 +1,97 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; + +export default function JoinPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From b281126dbe4ec317a1a0be8410f5c794c71e212f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 00:32:45 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 38 +++++++------------------------------- 1 file changed, 7 insertions(+), 31 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f2ab861..87ac7e6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,7 +30,7 @@ export default function VoidPactPage() { { name: "Home", id: "hero" }, { name: "Team", id: "team" }, { name: "About", id: "about" }, - { name: "Join", id: "join" }, + { name: "Join", id: "/join" }, { name: "Contact", id: "contact" } ]} /> @@ -45,7 +45,7 @@ export default function VoidPactPage() { tagIcon={Zap} tagAnimation="slide-up" buttons={[ - { text: "Join the Pact", href: "#join" }, + { text: "Join the Pact", href: "/join" }, { text: "Watch Our Story", href: "#about" } ]} buttonAnimation="slide-up" @@ -123,30 +123,6 @@ export default function VoidPactPage() { /> -
- -
-