Update src/app/privacy/page.tsx

This commit is contained in:
2026-04-08 17:47:17 +00:00
parent be5505683e
commit 2eca1bff93

View File

@@ -6,7 +6,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() {
export default function PrivacyPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -21,59 +21,37 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Book Demo",
id: "/appointments",
},
]}
brandName="Vertex Auto"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Book Demo", id: "/appointments" }
]}
brandName="Vertex Auto"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Privacy Policy"
sections={[
{
heading: "Data",
content: {
type: "paragraph",
text: "We value your data.",
},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Privacy Policy"
sections={[
{
heading: "Data", content: "We value your data."
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Vertex Auto"
leftLink={{
text: "Privacy Policy",
href: "/privacy",
}}
rightLink={{
text: "Terms of Service",
href: "/terms",
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Vertex Auto"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Terms of Service", href: "/terms" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);