Update src/app/about/page.tsx

This commit is contained in:
2026-04-21 15:29:01 +00:00
parent 32f5efb2f5
commit e81d28059a

View File

@@ -8,104 +8,58 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Code } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
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-content" data-section="about-content">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Story"
title="Built by one developer solving a real problem"
description="Geotools started with one developer, one problem, and zero patience for repetitive work. Manually writing llms.txt files, building FAQs, sending cold emails, checking SEO — it was exhausting. So we built free tools to handle all of it."
subdescription="Less busywork, more results."
icon={Code}
imageSrc="http://img.b2bpic.net/free-photo/laptop-notepad-composition-desk_23-2147982554.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Our Mission"
description="Democratizing access to high-quality SEO tools for every developer and business owner."
imageSrc="http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309686.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-content" data-section="about-content">
<TestimonialAboutCard
tag="Our Story"
title="Built by one developer solving a real problem"
description="Geotools started with one developer, one problem, and zero patience for repetitive work. Manually writing llms.txt files, building FAQs, sending cold emails, checking SEO — it was exhausting. So we built free tools to handle all of it."
subdescription="Less busywork, more results."
icon={Code}
imageSrc="http://img.b2bpic.net/free-photo/laptop-notepad-composition-desk_23-2147982554.jpg"
useInvertedBackground={false}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Our Mission"
description="Democratizing access to high-quality SEO tools for every developer and business owner."
/>
</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>
);
}
}