Update src/app/register/page.tsx
This commit is contained in:
@@ -4,10 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function RegisterPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -23,24 +23,12 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Register",
|
||||
id: "/register",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Register", id: "/register" },
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
brandName="NextGen SP"
|
||||
/>
|
||||
@@ -51,14 +39,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Join the Family"
|
||||
description={[
|
||||
"Registration is open to youth of all skill levels.",
|
||||
"We prioritize development, sportsmanship, and faith.",
|
||||
]}
|
||||
"Registration is open to youth of all skill levels.", "We prioritize development, sportsmanship, and faith."]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Sign Up",
|
||||
href: "/register",
|
||||
},
|
||||
text: "Sign Up", href: "/register"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -71,15 +55,9 @@ export default function LandingPage() {
|
||||
description="Everything you need to know about joining."
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Who can join?",
|
||||
content: "All youth aged 6-18 are welcome.",
|
||||
},
|
||||
id: "f1", title: "Who can join?", content: "All youth aged 6-18 are welcome."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "What is the cost?",
|
||||
content: "We offer tiered pricing based on family needs.",
|
||||
},
|
||||
id: "f2", title: "What is the cost?", content: "We offer tiered pricing based on family needs."},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user