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
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
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