diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4e9e293..ed7588c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,28 +1,53 @@ -"use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -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"; +'use client'; -const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, - { name: "Services", id: "/services" } -]; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Info } from 'lucide-react'; export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" } + ]; + return ( - + -
- +
+
); diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d013718..3e59d31 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,27 +1,52 @@ -"use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +'use client'; -const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" }, - { name: "Services", id: "/services" } -]; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactForm from '@/components/form/ContactForm'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" } + ]; + return ( - + -
- +
+ console.log("Form submitted for:", email)} + />
); diff --git a/src/app/page.tsx b/src/app/page.tsx index cb0dcff..2bd32d4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,8 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function HomePage() { const navItems = [ - { name: "Home", id: "/" } + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" } ]; return ( @@ -79,7 +80,7 @@ export default function HomePage() {