diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3e9284b..da44fa6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,135 +1,45 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import { ShieldCheck, Smile } from "lucide-react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { ShieldCheck } from "lucide-react"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } +]; + +export default function AboutPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
); -} +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fb1f3ee..cbaa837 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,122 +1,41 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } +]; + +export default function ContactPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index f73e6b3..5a228de 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -'use client'; +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; @@ -6,38 +6,84 @@ import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwen import ProductCardOne from "@/components/sections/product/ProductCardOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Home, FileText, Award } from "lucide-react"; const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } ]; -export default function Home() { +export default function HomePage() { return ( - +
- +
- +
- +
- +
);