diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..c3c7517 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,84 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import TeamCardTen from "@/components/sections/team/TeamCardTen"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function AboutPage() { + return ( + + + + + + + + + ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..7cf4dda --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,88 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Mail, Clock, MapPin } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+
+

Reach Us

+

Email us at hello@webild.com or fill out the form below to get started on your journey.

+
+
+

Business Hours

+

123 Digital Ave, Tech City

+

Mon - Fri: 9:00 AM - 6:00 PM

+

Sat - Sun: Closed

+
+
+
+ +
+
+ ); +} \ No newline at end of file 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