diff --git a/src/app/legal/page.tsx b/src/app/legal/page.tsx
index 43effe1..2ee6ad0 100644
--- a/src/app/legal/page.tsx
+++ b/src/app/legal/page.tsx
@@ -3,8 +3,8 @@
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";
+import FooterBase from "@/components/sections/footer/FooterBase";
export default function LegalPage() {
return (
@@ -28,70 +28,42 @@ export default function LegalPage() {
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
- { name: "Legal", id: "legal" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
+ { name: "Legal", id: "legal" },
]}
- button={{ text: "Get Started", href: "#contact" }}
+ button={{ text: "Get Started", href: "/contact" }}
/>
-
+
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 37439b7..9ffc50a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -34,9 +34,9 @@ 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" },
+ { name: "Legal", id: "legal" },
]}
button={{ text: "Get Started", href: "#contact" }}
/>
@@ -172,9 +172,9 @@ 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" },
+ { label: "Legal", href: "/legal" },
],
},
{
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
index 4ab143b..ba0bc80 100644
--- a/src/app/pricing/page.tsx
+++ b/src/app/pricing/page.tsx
@@ -29,11 +29,11 @@ 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" },
+ { name: "Legal", id: "legal" },
]}
- button={{ text: "Get Started", href: "#contact" }}
+ button={{ text: "Get Started", href: "/contact" }}
/>
@@ -65,30 +65,9 @@ export default function PricingPage() {
logoText="CONFLUXSYSTEMS"
copyrightText="© 2026 | CONFLUXSYSTEMS"
columns={[
- {
- title: "Company", items: [
- { label: "About", href: "#about" },
- { label: "Services", href: "#services" },
- { label: "Legal", href: "/legal" },
- { label: "Work", href: "#work" },
- { label: "Contact", href: "#contact" },
- ],
- },
- {
- title: "Solutions", items: [
- { label: "AI Agents", href: "#" },
- { label: "Workflow Automations", href: "#" },
- { label: "Infrastructure", href: "#" },
- { label: "System Audit", href: "#" },
- ],
- },
- {
- title: "Resources", items: [
- { label: "Twitter", href: "#" },
- { label: "LinkedIn", href: "#" },
- { label: "Blog", href: "#" },
- ],
- },
+ { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] },
+ { title: "Solutions", items: [{ label: "AI Agents", href: "/services" }, { label: "Workflow Automations", href: "/services" }, { label: "Infrastructure", href: "/services" }, { label: "System Audit", href: "/services" }] },
+ { title: "Resources", items: [{ label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "Blog", href: "#" }, { label: "Legal", href: "/legal" }] },
]}
/>