diff --git a/src/app/legal/page.tsx b/src/app/legal/page.tsx new file mode 100644 index 0000000..43effe1 --- /dev/null +++ b/src/app/legal/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import LegalSection from "@/components/legal/LegalSection"; + +export default function LegalPage() { + return ( + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index aad714a..37439b7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function WebAgency2Page() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, + { name: "Legal", id: "legal" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, ]} @@ -171,6 +172,7 @@ export default function WebAgency2Page() { title: "Company", items: [ { label: "About", href: "#about" }, { label: "Services", href: "#services" }, + { label: "Legal", href: "/legal" }, { label: "Work", href: "#work" }, { label: "Contact", href: "#contact" }, ], diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 232a584..4ab143b 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -29,6 +29,7 @@ export default function PricingPage() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "Pricing", id: "pricing" }, + { name: "Legal", id: "legal" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, ]} @@ -68,6 +69,7 @@ export default function PricingPage() { title: "Company", items: [ { label: "About", href: "#about" }, { label: "Services", href: "#services" }, + { label: "Legal", href: "/legal" }, { label: "Work", href: "#work" }, { label: "Contact", href: "#contact" }, ],