diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 2f49219..be25d2d 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,22 +1,9 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Navbar from "@/components/Navbar/Navbar";
-import About from "@/components/About/About";
-import Team from "@/components/Team/Team";
-import Metric from "@/components/Metric/Metric";
-import Footer from "@/components/Footer/Footer";
import Link from "next/link";
-import { Users, Lightbulb, TrendingUp } from "lucide-react";
export default function AboutPage() {
- const navLinks = [
- { label: "Home", href: "/" },
- { label: "About", href: "/about" },
- { label: "Services", href: "/services" },
- { label: "Contact", href: "/contact" },
- ];
-
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
);
}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index bc6d42f..c2acf0a 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,21 +1,9 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Navbar from "@/components/Navbar/Navbar";
-import Contact from "@/components/Contact/Contact";
-import FAQ from "@/components/FAQ/FAQ";
-import CTA from "@/components/CTA/CTA";
-import Footer from "@/components/Footer/Footer";
import Link from "next/link";
export default function ContactPage() {
- const navLinks = [
- { label: "Home", href: "/" },
- { label: "About", href: "/about" },
- { label: "Services", href: "/services" },
- { label: "Contact", href: "/contact" },
- ];
-
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0f484bb..43104ef 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,26 +1,9 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Navbar from "@/components/Navbar/Navbar";
-import Hero from "@/components/Hero/Hero";
-import Feature from "@/components/Feature/Feature";
-import Metric from "@/components/Metric/Metric";
-import Testimonial from "@/components/Testimonial/Testimonial";
-import SocialProof from "@/components/SocialProof/SocialProof";
-import CTA from "@/components/CTA/CTA";
-import FAQ from "@/components/FAQ/FAQ";
-import Footer from "@/components/Footer/Footer";
import Link from "next/link";
-import { Rocket, Shield, Activity, Bell } from "lucide-react";
export default function HomePage() {
- const navLinks = [
- { label: "Home", href: "/" },
- { label: "About", href: "/about" },
- { label: "Services", href: "/services" },
- { label: "Contact", href: "/contact" },
- ];
-
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
);
}
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index e38a4fa..c6b17cc 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -1,22 +1,9 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Navbar from "@/components/Navbar/Navbar";
-import Product from "@/components/Product/Product";
-import Pricing from "@/components/Pricing/Pricing";
-import FAQ from "@/components/FAQ/FAQ";
-import Footer from "@/components/Footer/Footer";
import Link from "next/link";
-import { BarChart, Search, ShieldCheck } from "lucide-react";
export default function ServicesPage() {
- const navLinks = [
- { label: "Home", href: "/" },
- { label: "About", href: "/about" },
- { label: "Services", href: "/services" },
- { label: "Contact", href: "/contact" },
- ];
-
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
+
);
}