From 593d0898ad680a9320d5e5ef43a89fcc8de94e91 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 07:33:12 +0000 Subject: [PATCH 1/3] Add src/app/legal/page.tsx --- src/app/legal/page.tsx | 101 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 src/app/legal/page.tsx 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 ( + + + + + + + + ); +} -- 2.49.1 From d86f8327f4f66f902e95f24c5736dc7c9f92fd81 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 07:33:12 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 2 ++ 1 file changed, 2 insertions(+) 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" }, ], -- 2.49.1 From 8453cacb2c5f67430096951ce4ad0858047ff638 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 07:33:13 +0000 Subject: [PATCH 3/3] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 2 ++ 1 file changed, 2 insertions(+) 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" }, ], -- 2.49.1