From 2b58ebda67977881307ea9d20810285ce1dec50a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 21:07:47 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 91c94a0..4a31cd5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -39,6 +39,8 @@ export default function LandingPage() { name: "Pricing", id: "/pricing"}, { name: "Contact", id: "#contact"}, + { + name: "Terms", id: "/terms"}, ]} brandName="Instyle Industries" /> @@ -157,4 +159,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 312f5af3ac08550ff40a43821429bd6df471f445 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 21:07:48 +0000 Subject: [PATCH 2/3] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 453ab60..d4a576c 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -25,10 +25,11 @@ export default function PricingPage() { @@ -44,11 +45,11 @@ export default function PricingPage() { plans={[ { id: "basic", badge: "Residential", price: "GHS 150/sqm", subtitle: "Perfect for standard family homes.", features: ["Aluzinc Standard", "5 Year Warranty", "Basic Installation"], - buttons: [{ text: "Select Plan", href: "#contact" }] + buttons: [{ text: "Select Plan", href: "/#contact" }] }, { id: "pro", badge: "Commercial", price: "GHS 250/sqm", subtitle: "Designed for robust industrial buildings.", features: ["Heavy-Duty Steel", "15 Year Warranty", "Precision Installation", "Custom Finishing"], - buttons: [{ text: "Select Plan", href: "#contact" }] + buttons: [{ text: "Select Plan", href: "/#contact" }] } ]} /> @@ -64,4 +65,4 @@ export default function PricingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From c143d2565f247e0a25088fc8aeafaa04da02534f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 21:07:48 +0000 Subject: [PATCH 3/3] Add src/app/terms/page.tsx --- src/app/terms/page.tsx | 73 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/app/terms/page.tsx diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..514c105 --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,73 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import LegalSection from '@/components/legal/LegalSection'; + +export default function TermsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1