4 Commits

Author SHA1 Message Date
d4c1175256 Update src/app/page.tsx 2026-03-11 18:19:29 +00:00
2d4102b85a Merge version_3 into main
Merge version_3 into main
2026-03-11 18:16:06 +00:00
e133af1595 Update src/app/page.tsx 2026-03-11 18:16:02 +00:00
4fed24aa7a Merge version_2 into main
Merge version_2 into main
2026-03-11 18:11:53 +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"
@@ -123,16 +157,16 @@ export default function LandingPage() {
tag="Performance"
metrics={[
{
id: "1", value: "150", title: "brands transformed", description: "Enterprise and mid-market organizations elevated", icon: TrendingUp
id: "1", value: "2.8x", title: "average ROI", description: "Client revenue growth following engagement", icon: Zap
},
{
id: "2", value: "18", title: "years expertise", description: "In brand strategy and premium design execution", icon: Award
id: "2", value: "150", title: "brands transformed", description: "Enterprise and mid-market organizations elevated", icon: TrendingUp
},
{
id: "3", value: "47", title: "design awards", description: "Recognition for strategic excellence and execution", icon: Trophy
id: "3", value: "18", title: "years expertise", description: "In brand strategy and premium design execution", icon: Award
},
{
id: "4", value: "2.8x", title: "average ROI", description: "Client revenue growth following engagement", icon: Zap
id: "4", value: "47", title: "design awards", description: "Recognition for strategic excellence and execution", icon: Trophy
}
]}
gridVariant="uniform-all-items-equal"
@@ -188,4 +222,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}