diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..e34719d --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,82 @@ +"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 WebAgency2AboutPage() { + 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..d73f0b9 --- /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 ContactForm from "@/components/form/ContactForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function WebAgency2ContactPage() { + return ( + + + + console.log('Contact form submitted with email:', email)} + centered={true} + /> + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 5769bf0..ae9644b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,7 +13,9 @@ 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 { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react"; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users, CheckCircle } from "lucide-react"; export default function WebAgency2Page() { return ( @@ -35,8 +37,10 @@ export default function WebAgency2Page() { navItems={[ { name: "Work", id: "work" }, { name: "Services", id: "services" }, + { name: "Pricing", id: "pricing" }, + { name: "Testimonials", id: "testimonials" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "contact" } ]} button={{ text: "Get Started", href: "#contact" }} /> @@ -68,96 +72,101 @@ export default function WebAgency2Page() { ]} carouselItemClassName="!aspect-[4/5]" /> - - + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ +
+ - + +
+ +
+ - + +
+ +
+ + + + + + + + + + ); +} diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..450ac45 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,136 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Sparkles, Monitor, TrendingUp, Code, LayoutGrid, ShoppingCart, Award, Users } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + + + + + + + + ); +} diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx new file mode 100644 index 0000000..0150e04 --- /dev/null +++ b/src/app/team/page.tsx @@ -0,0 +1,82 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TeamCardTen from "@/components/sections/team/TeamCardTen"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function WebAgency2TeamPage() { + return ( + + + + + + + + ); +} \ No newline at end of file