diff --git a/src/app/page.tsx b/src/app/page.tsx index 83bc6e8..9ac1091 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function WebAgency2Page() { { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, + { name: "Social Media Marketing", href: "/social-media-marketing" } ]} button={{ text: "Get Started", href: "#contact" }} /> @@ -255,6 +256,7 @@ export default function WebAgency2Page() { { label: "Services", href: "#services" }, { label: "Work", href: "#work" }, { label: "Contact", href: "#contact" }, + { label: "Social Media Marketing", href: "/social-media-marketing" } ], }, { @@ -278,4 +280,4 @@ export default function WebAgency2Page() { ); -} +} \ No newline at end of file diff --git a/src/app/social-media-marketing/page.tsx b/src/app/social-media-marketing/page.tsx new file mode 100644 index 0000000..878c7ba --- /dev/null +++ b/src/app/social-media-marketing/page.tsx @@ -0,0 +1,155 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Sparkles, Users, TrendingUp, Megaphone, Target, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, DollarSign, Pin, Bell } from "lucide-react"; + +export default function SocialMediaMarketingPage() { + return ( + + + + + + + + + + + ); +} \ No newline at end of file