Update src/app/seo/page.tsx

This commit is contained in:
2026-04-21 15:29:02 +00:00
parent 86d53fea41
commit 9926db2591

View File

@@ -6,91 +6,47 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function SeoPage() {
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: "Cold Email",
id: "/cold-email",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="GeoTools"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Optimize Everything"
description="Comprehensive SEO analysis to identify weak points and boost your search rankings."
imageSrc="http://img.b2bpic.net/free-photo/business-success-growth-visualization_23-2152011787.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
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: "#",
},
],
},
]}
logoText="GeoTools"
/>
</div>
<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="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Optimize Everything"
description="Comprehensive SEO analysis to identify weak points and boost your search rankings."
/>
</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>
);
}
}