Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c0df4b1dd4 | |||
| f3ccd10247 | |||
| 167ff6c70a | |||
| 7d683dcb3d | |||
| 311b84c821 |
@@ -5,12 +5,13 @@ import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import { Instagram, Twitter, Facebook } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -153,16 +154,17 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
|
||||
{ title: "Brand", items: [{ label: "About Us", href: "#about" }, { label: "Careers", href: "#" }] },
|
||||
<FooterCard
|
||||
logoText="FastBite"
|
||||
copyrightText="© 2025 | FastBite"
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
|
||||
]}
|
||||
bottomLeftText="© 2024 FastBite Brand."
|
||||
bottomRightText="Privacy Policy"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -37,13 +37,16 @@ export default function PrivacyPolicyPage() {
|
||||
subtitle="Last updated: May 2024"
|
||||
sections={[
|
||||
{
|
||||
heading: "Information We Collect", content: { type: "paragraph", text: "We collect information you provide directly to us, including your name, email address, phone number, and delivery address when you place an order." }
|
||||
heading: "Information We Collect",
|
||||
content: { type: "paragraph", text: "We collect information you provide directly to us, including your name, email address, phone number, and delivery address when you place an order." }
|
||||
},
|
||||
{
|
||||
heading: "How We Use Your Data", content: { type: "list", items: ["To process and deliver your orders", "To communicate about your order status", "To send you promotional offers and updates", "To improve our service and platform"] }
|
||||
heading: "How We Use Your Data",
|
||||
content: { type: "list", items: ["To process and deliver your orders", "To communicate about your order status", "To send you promotional offers and updates", "To improve our service and platform"] }
|
||||
},
|
||||
{
|
||||
heading: "Your Rights", content: { type: "numbered-list", items: ["The right to access your personal data", "The right to request correction of your data", "The right to request deletion of your data"] }
|
||||
heading: "Your Rights",
|
||||
content: { type: "list", items: ["The right to access your personal data", "The right to request correction of your data", "The right to request deletion of your data"] }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -58,4 +61,4 @@ export default function PrivacyPolicyPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user