7 Commits

Author SHA1 Message Date
f740b4f581 Update src/app/page.tsx 2026-03-04 01:49:10 +00:00
53238d4b1b Update src/app/layout.tsx 2026-03-04 01:49:09 +00:00
86d7ff1ae7 Merge version_5 into main
Merge version_5 into main
2026-03-04 01:44:41 +00:00
a6c49698c3 Update src/app/page.tsx 2026-03-04 01:44:37 +00:00
21f31eebe4 Update src/app/layout.tsx 2026-03-04 01:44:36 +00:00
f0cb8b64c9 Merge version_4 into main
Merge version_4 into main
2026-03-04 01:43:20 +00:00
93ba8420c4 Merge version_4 into main
Merge version_4 into main
2026-03-04 01:42:34 +00:00

View File

@@ -3,7 +3,7 @@
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
@@ -11,7 +11,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, Facebook, Heart, Instagram, Linkedin, Mail, Sparkles, Target, TrendingUp, Twitter, Users } from "lucide-react";
import { Award, Facebook, Heart, Instagram, Linkedin, Mail, Sparkles, Target, TrendingUp, Twitter, Users, ArrowRight } from "lucide-react";
export default function LandingPage() {
return (
@@ -34,7 +34,6 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" },
]}
/>
@@ -42,8 +41,8 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
title="Transform Your Brand"
description="We craft data-driven marketing strategies that elevate your brand, engage your audience, and drive measurable growth. Partner with experts who understand your vision."
title="Drive 300% ROI Growth Within 90 Days"
description="Unlock measurable revenue acceleration through data-driven marketing strategies. Then partner with experts who understand your vision and deliver proven results."
tag="Marketing Excellence"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -83,7 +82,7 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<FeatureCardEight
<FeatureCardTwentySix
title="Our Core Services"
description="Comprehensive marketing solutions designed to accelerate your business growth and brand presence"
tag="What We Offer"
@@ -91,17 +90,17 @@ export default function LandingPage() {
tagAnimation="slide-up"
features={[
{
id: 1,
title: "Social Media Marketing", description: "Strategic campaigns across all major platforms to engage your audience and build brand loyalty", imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063161.jpg", imageAlt: "Social media marketing campaigns"},
title: "Social Media Marketing", description: "Strategic campaigns across all major platforms to engage your audience and build brand loyalty", imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-marketing-with-applications_23-2150063161.jpg", imageAlt: "Social media marketing campaigns", buttonIcon: ArrowRight,
buttonHref: "#"},
{
id: 2,
title: "Content Creation & Strategy", description: "Compelling storytelling that resonates with your audience and drives meaningful engagement", imageSrc: "http://img.b2bpic.net/free-photo/media-journalism-global-daily-news-content-concept_53876-123733.jpg", imageAlt: "Content creation and copywriting"},
title: "Content Creation & Strategy", description: "Compelling storytelling that resonates with your audience and drives meaningful engagement", imageSrc: "http://img.b2bpic.net/free-photo/media-journalism-global-daily-news-content-concept_53876-123733.jpg", imageAlt: "Content creation and copywriting", buttonIcon: ArrowRight,
buttonHref: "#"},
{
id: 3,
title: "Performance Analytics", description: "Data-driven insights that measure results, optimize campaigns, and maximize ROI", imageSrc: "http://img.b2bpic.net/free-photo/employee-editing-documents-desktop-computer-office-desk_482257-126550.jpg", imageAlt: "Analytics and performance metrics"},
title: "Performance Analytics", description: "Data-driven insights that measure results, optimize campaigns, and maximize ROI", imageSrc: "http://img.b2bpic.net/free-photo/employee-editing-documents-desktop-computer-office-desk_482257-126550.jpg", imageAlt: "Analytics and performance metrics", buttonIcon: ArrowRight,
buttonHref: "#"},
{
id: 4,
title: "Brand Development", description: "Full-service branding from identity design to brand voice that sets you apart", imageSrc: "http://img.b2bpic.net/free-vector/colorful-minimal-business-card-template_23-2148373393.jpg", imageAlt: "Brand identity and logo design"},
title: "Brand Development", description: "Full-service branding from identity design to brand voice that sets you apart", imageSrc: "http://img.b2bpic.net/free-vector/colorful-minimal-business-card-template_23-2148373393.jpg", imageAlt: "Brand identity and logo design", buttonIcon: ArrowRight,
buttonHref: "#"},
]}
textboxLayout="default"
useInvertedBackground={true}