diff --git a/src/app/page.tsx b/src/app/page.tsx index bcb46df..92f2665 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Terms", id: "/terms" } ]} bottomLeftText="Handcrafted Flowers" bottomRightText="hello@emiliflowers.com" @@ -183,6 +184,13 @@ export default function LandingPage() { { label: "Contact", href: "#contact" } ] }, + { + title: "Legal", items: [ + { label: "Terms of Service", href: "/terms" }, + { label: "Privacy Policy", href: "#contact" }, + { label: "Contact", href: "mailto:hello@emiliflowers.com" } + ] + }, { title: "Connect", items: [ { label: "Instagram", href: "https://instagram.com" }, diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..a9f3d61 --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,156 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function TermsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file