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 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() { /> -
- -
-