diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..4488b53 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,54 @@ +"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 TeamCardSix from "@/components/sections/team/TeamCardSix"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +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..e18ec14 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,78 @@ +"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 ( + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..6d7b3dc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,7 @@ import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react"; export default function WebAgency2Page() { @@ -36,9 +37,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 diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..aca7716 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Search, Monitor, Zap } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/work/page.tsx b/src/app/work/page.tsx new file mode 100644 index 0000000..2d563f8 --- /dev/null +++ b/src/app/work/page.tsx @@ -0,0 +1,53 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { ArrowUpRight } from "lucide-react"; + +export default function WorkPage() { + return ( + + + + + + + + + ); +} \ No newline at end of file