diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..73212fc --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,32 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import { User, Target } from "lucide-react"; + +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 new file mode 100644 index 0000000..c6f7c40 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,85 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function ContactPage() { + return ( + + + +
+ +
+

Direct Contact

+

Email: zakariaserroukh02@gmail.com

+

Phone: +212637779305

+
+
+ +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..2485147 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,9 +36,9 @@ export default function WebAgency2Page() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} - button={{ text: "Get Started", href: "#contact" }} + button={{ text: "Get Started", href: "/contact" }} /> + + + + + + ); +} \ No newline at end of file