diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..3149a29 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +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..58db802 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,58 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function ContactPage() { + return ( + + + + console.log("Submit:", email)} + /> + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..90faef8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,10 +35,10 @@ export default function WebAgency2Page() { navItems={[ { name: "Work", id: "work" }, { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]} - button={{ text: "Get Started", href: "#contact" }} + button={{ text: "Get Started", href: "/contact" }} /> + + + + + + + + + ); +} diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..6cfbe2a --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,94 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Zap } from "lucide-react"; + +export default function PricingPage() { + return ( + + + + + + + + ); +} \ No newline at end of file