Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-03-11 18:19:33 +00:00

View File

@@ -9,7 +9,8 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Award, Mail, Sparkles, TrendingUp, Trophy, Zap } from "lucide-react";
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import { Award, Mail, Sparkles, TrendingUp, Trophy, Zap, Facebook, Youtube, Instagram, Users } from "lucide-react";
export default function LandingPage() {
return (
@@ -66,6 +67,39 @@ export default function LandingPage() {
/>
</div>
<div id="services" data-section="services">
<FeatureBorderGlow
title="Social Media Management Services"
description="We connect your brand with audiences across the most powerful social platforms. Strategic content, authentic engagement, and measurable growth."
tag="Digital Strategy"
tagIcon={Sparkles}
tagAnimation="slide-up"
features={[
{
icon: Facebook,
title: "Facebook Marketing", description: "Community building and targeted campaigns that convert. We leverage Facebook's powerful tools for audience segmentation and measurable ROI."
},
{
icon: Youtube,
title: "YouTube Strategy", description: "Content that captures attention and drives engagement. From series planning to production strategy, we help your brand become a destination."
},
{
icon: Instagram,
title: "Instagram Growth", description: "Visual storytelling that resonates. We craft feeds and strategies that build loyal communities and amplify your brand presence."
},
{
icon: Users,
title: "Influencer Connections", description: "Direct relationships with authentic creators. We facilitate partnerships that align with your brand values and drive genuine engagement."
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Discuss Your Strategy", href: "contact" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="work" data-section="work">
<FeatureCardTwentyThree
title="Recent Work"
@@ -188,4 +222,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}