Update src/app/privacy/page.tsx
This commit is contained in:
@@ -5,10 +5,30 @@ import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<ThemeProvider borderRadius="soft">
|
||||
<NavbarStyleApple navItems={[{name: "Home", id: "/"}]} brandName="Swift Haul" />
|
||||
<div className="pt-32">
|
||||
<LegalSection layout="page" title="Privacy Policy" sections={[{heading: "Data", content: {type: "paragraph", text: "We protect your data."}}]} />
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[{name: "Home", id: "/"}, {name: "About", id: "/about"}, {name: "Dashboard", id: "/dashboard"}, {name: "Contact", id: "/contact"}]}
|
||||
brandName="Swift Haul"
|
||||
/>
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
sections={[{heading: "Data", content: {type: "paragraph", text: "We protect your data."}}]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user