132 lines
3.5 KiB
TypeScript
132 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="medium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="blurBottom"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{
|
|
name: "Home",
|
|
id: "/",
|
|
},
|
|
{
|
|
name: "Species",
|
|
id: "/species",
|
|
},
|
|
{
|
|
name: "Rules",
|
|
id: "/rules",
|
|
},
|
|
{
|
|
name: "Beginners",
|
|
id: "/beginners",
|
|
},
|
|
{
|
|
name: "Locations",
|
|
id: "/locations",
|
|
},
|
|
]}
|
|
brandName="Sydney Fishing Guide"
|
|
/>
|
|
</div>
|
|
|
|
<div id="regulations" data-section="regulations">
|
|
<FaqSplitMedia
|
|
textboxLayout="split"
|
|
useInvertedBackground={false}
|
|
faqs={[
|
|
{
|
|
id: "1",
|
|
title: "What are the bag limits?",
|
|
content: "Bag and possession limits vary by species. Consult the official DPI website for current NSW regulations.",
|
|
},
|
|
{
|
|
id: "2",
|
|
title: "Is a life jacket required?",
|
|
content: "Yes, mandatory on all rock fishing platforms for your safety.",
|
|
},
|
|
{
|
|
id: "3",
|
|
title: "Do I need a fishing license?",
|
|
content: "NSW recreational fishing license is required for most waters.",
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/wakeboard-wakeboarding-jumping-sunset_1321-3133.jpg?_wi=2"
|
|
mediaAnimation="blur-reveal"
|
|
title="NSW Size Limits & Safety"
|
|
description="Stay legal and safe on the water. Know your bag limits and safety equipment requirements."
|
|
faqsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitText
|
|
useInvertedBackground={false}
|
|
sideTitle="Safety First"
|
|
sideDescription="Never compromise your safety on the rocks."
|
|
faqs={[
|
|
{
|
|
id: "4",
|
|
title: "Do I need boots?",
|
|
content: "Rock spikes are recommended.",
|
|
},
|
|
{
|
|
id: "5",
|
|
title: "Can I fish alone?",
|
|
content: "Not recommended in remote areas.",
|
|
},
|
|
]}
|
|
faqsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Guide",
|
|
items: [
|
|
{
|
|
label: "Species Info",
|
|
href: "/species",
|
|
},
|
|
{
|
|
label: "Regulations",
|
|
href: "/rules",
|
|
},
|
|
{
|
|
label: "Beginners",
|
|
href: "/beginners",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2024 Sydney Fishing Guide"
|
|
bottomRightText="Fish Sustainably"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|