Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 280378ad6f | |||
| 21386762ff |
164
src/app/page.tsx
164
src/app/page.tsx
@@ -2,12 +2,12 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -26,24 +26,12 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Features",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="FairwayFees"
|
||||
/>
|
||||
@@ -54,10 +42,7 @@ export default function LandingPage() {
|
||||
logoText="FairwayFees"
|
||||
description="The world's most comprehensive database of golf green fees. Simply search your desired course to get instant, accurate pricing."
|
||||
buttons={[
|
||||
{
|
||||
text: "Search Now",
|
||||
href: "#features",
|
||||
},
|
||||
{ text: "Search Now", href: "#features" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-golf-course-landscape_23-2151014760.jpg"
|
||||
@@ -72,26 +57,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
tag: "Search",
|
||||
title: "Universal Search",
|
||||
subtitle: "Find any course",
|
||||
description: "Type the name of any course globally and get instant green fee results.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-with-internet-browser-search-bar-screen_169016-40049.jpg",
|
||||
},
|
||||
tag: "Search", title: "Universal Search", subtitle: "Find any course", description: "Type the name of any course globally and get instant green fee results.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bvr9MJSjgs014ZQBXN4BRjq0Fs/uploaded-1775382900523-bdxb8zjt.png"},
|
||||
{
|
||||
tag: "Global",
|
||||
title: "Comprehensive Data",
|
||||
subtitle: "Worldwide coverage",
|
||||
description: "We aggregate thousands of pricing data points daily for 100% accuracy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-golf-course-landscape_23-2151014782.jpg",
|
||||
},
|
||||
tag: "Global", title: "Comprehensive Data", subtitle: "Worldwide coverage", description: "We aggregate thousands of pricing data points daily for 100% accuracy.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-golf-course-landscape_23-2151014782.jpg"},
|
||||
{
|
||||
tag: "Insights",
|
||||
title: "Pricing Trends",
|
||||
subtitle: "Save on golf",
|
||||
description: "Understand seasonal pricing fluctuations to plan your best golf trips.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-binoculars-golf-field_23-2148822961.jpg",
|
||||
},
|
||||
tag: "Insights", title: "Pricing Trends", subtitle: "Save on golf", description: "Understand seasonal pricing fluctuations to plan your best golf trips.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-binoculars-golf-field_23-2148822961.jpg"},
|
||||
]}
|
||||
title="Precision Golf Intelligence"
|
||||
description="Unlock data-driven insights for every fairway on the planet."
|
||||
@@ -103,21 +73,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How often is pricing updated?",
|
||||
content: "Our database refreshes daily to ensure current green fees.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you cover private clubs?",
|
||||
content: "We include public access and daily fee information for thousands of private clubs.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is this service free?",
|
||||
content: "Yes, FairwayFees is completely free for golfers to search any course.",
|
||||
},
|
||||
{ id: "1", title: "How often is pricing updated?", content: "Our database refreshes daily to ensure current green fees." },
|
||||
{ id: "2", title: "Do you cover private clubs?", content: "We include public access and daily fee information for thousands of private clubs." },
|
||||
{ id: "3", title: "Is this service free?", content: "Yes, FairwayFees is completely free for golfers to search any course." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/closeup-picture-human-taking-white-gold-ball-field_181624-21600.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -136,55 +94,26 @@ export default function LandingPage() {
|
||||
description="Choose the right plan for your needs."
|
||||
plans={[
|
||||
{
|
||||
id: "free",
|
||||
tag: "Basic",
|
||||
price: "$0",
|
||||
period: "/mo",
|
||||
description: "Perfect for casual golfers.",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
},
|
||||
featuresTitle: "Includes",
|
||||
features: [
|
||||
"Basic Search",
|
||||
"Community Support",
|
||||
"No Hidden Fees",
|
||||
],
|
||||
id: "free", tag: "Basic", price: "$0", period: "/mo", description: "Perfect for casual golfers.", button: { text: "Get Started" },
|
||||
featuresTitle: "Includes", features: ["Basic Search", "Community Support", "No Hidden Fees"],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
tag: "Pro",
|
||||
price: "$19",
|
||||
period: "/mo",
|
||||
description: "For serious golf enthusiasts.",
|
||||
button: {
|
||||
text: "Upgrade",
|
||||
},
|
||||
featuresTitle: "Everything in Basic, plus:",
|
||||
features: [
|
||||
"Advanced Filters",
|
||||
"Alerts",
|
||||
"Priority Data",
|
||||
"Ad-Free",
|
||||
],
|
||||
id: "pro", tag: "Pro", price: "$19", period: "/mo", description: "For serious golf enthusiasts.", button: { text: "Upgrade" },
|
||||
featuresTitle: "Everything in Basic, plus:", features: ["Advanced Filters", "Alerts", "Priority Data", "Ad-Free"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "animated-grid",
|
||||
}}
|
||||
tag="Newsletter"
|
||||
title="Stay Updated on Golf Deals"
|
||||
description="Join thousands of golfers receiving the best rates for the top courses globally."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/professional-golfer-bali-indonesia_72229-881.jpg"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email address"
|
||||
<ContactCenter
|
||||
background={{ variant: "animated-grid" }}
|
||||
useInvertedBackground={false}
|
||||
tag="Contact Us"
|
||||
title="Get in Touch"
|
||||
description="Have questions or need assistance? Reach out to our team directly."
|
||||
buttonText="Submit Inquiry"
|
||||
inputPlaceholder="Enter your email..."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -192,42 +121,21 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{
|
||||
label: "API Access",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Partner With Us",
|
||||
href: "#",
|
||||
},
|
||||
title: "Resources", items: [
|
||||
{ label: "API Access", href: "#" },
|
||||
{ label: "Partner With Us", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -238,4 +146,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user