91 lines
4.8 KiB
TypeScript
91 lines
4.8 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
|
import { CheckCircle, FileText, Globe } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="circleGradient"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="normal"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About Us", id: "/about" },
|
|
{ name: "SEO Checker", id: "/seo" },
|
|
{ name: "Contact", id: "/contact" }
|
|
]}
|
|
brandName="GeoTools"
|
|
button={{ text: "Get Started", href: "#" }}
|
|
/>
|
|
</div>
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplit
|
|
title="Make Your Website AI-Ready in Seconds"
|
|
description="Stop letting AI models ignore your content. Generate llms.txt files and FAQs automatically. Free tools built for website owners who need structured content fast."
|
|
background={{ variant: "gradient-bars" }}
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTwentyOne
|
|
title="4 Powerful Tools, Zero Complexity"
|
|
description="Whether you're freelancing on the side or running a full operation, we built these free tools to handle the busywork for you."
|
|
accordionItems={[{ id: "a1", title: "llms.txt Generator", content: "Create perfect llms.txt files in seconds to help GPT-4 and Claude index your site accurately." }, { id: "a2", title: "FAQ Generator", content: "Automatically structure your frequently asked questions to boost user engagement and SEO." }, { id: "a3", title: "SEO Checker", content: "Get actionable insights to improve your search visibility and outrank your competition." }, { id: "a4", title: "Cold Email Generator", content: "Craft professional, high-converting cold emails without starting from a blank page." }]}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardOne
|
|
metrics={[{ id: "m1", value: "50,000+", title: "Websites", description: "Websites using geotools daily.", icon: Globe }, { id: "m2", value: "100,000+", title: "Docs", description: "Professional documents generated.", icon: FileText }, { id: "m3", value: "99.9%", title: "Accuracy", description: "High-fidelity AI ready output.", icon: CheckCircle }]}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
title="Trusted by Website Owners Worldwide"
|
|
description="See how thousands of teams are already saving time with our free tools."
|
|
/>
|
|
</div>
|
|
<div id="about" data-section="about">
|
|
<MediaAbout
|
|
useInvertedBackground={false}
|
|
title="Built for scale, kept free for everyone"
|
|
description="Our infrastructure is designed to handle millions of requests while maintaining minimal latency, ensuring your site remains fast."
|
|
/>
|
|
</div>
|
|
<div id="testimonial" data-section="testimonial">
|
|
<TestimonialCardFifteen
|
|
useInvertedBackground={false}
|
|
testimonial="This tool saved me hours of manual configuration. Simply incredible."
|
|
rating={5}
|
|
author="Jane Doe, Freelancer"
|
|
/>
|
|
</div>
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
logoText="GeoTools"
|
|
columns={[{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "llms.txt Gen", href: "#" }, { label: "FAQ Gen", href: "#" }, { label: "SEO Checker", href: "#" }] }]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |