Update src/app/legal/privacy/page.tsx

This commit is contained in:
2026-04-06 21:22:47 +00:00
parent efe22ff97e
commit 13fdf7471d

View File

@@ -8,7 +8,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function PrivacyPolicyPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Products", id: "/products"}, {name: "FAQ", id: "/faq"}, {name: "Contact", id: "/contact"}]} />
<div className="pt-32 pb-20">
@@ -18,7 +18,11 @@ export default function PrivacyPolicyPage() {
sections={[{ heading: "Data Collection", content: { type: "paragraph", text: "We collect minimal data necessary for order fulfillment and scientific communication. Your information is never sold to third parties." } }]}
/>
</div>
<FooterSimple columns={[{ title: "Company", items: [{ label: "Home", href: "/" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "/legal/privacy" }, { label: "Disclaimer", href: "/legal/disclaimer" }] }]} />
<FooterSimple
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "/legal/privacy" }, { label: "Disclaimer", href: "/legal/disclaimer" }] }]}
bottomLeftText="© 2025 Webild"
bottomRightText="hello@example.com"
/>
</ReactLenis>
</ThemeProvider>
)