Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 93ae5e3962 | |||
| 3f0a13cea9 | |||
| 5771d45eac | |||
| 0ce13b0bdc | |||
| 6939b38b24 | |||
| 0253537021 | |||
| 85d6ef1f51 | |||
| d7eb0396e8 |
@@ -12,17 +12,15 @@ import { BarChart3, Palette, TrendingUp, HeadphonesIcon, Zap, Search, Share2, Ma
|
|||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Portfolio", id: "portfolio" },
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const navButton = {
|
const navButton = {
|
||||||
text: "Get Started",
|
text: "Get Started", href: "/contact"};
|
||||||
href: "contact",
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -55,24 +53,16 @@ export default function AboutPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Data-Driven Strategy",
|
title: "Data-Driven Strategy", description: "Every campaign is backed by comprehensive analytics and insights", icon: BarChart3,
|
||||||
description: "Every campaign is backed by comprehensive analytics and insights",
|
|
||||||
icon: BarChart3,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Creative Excellence",
|
title: "Creative Excellence", description: "Award-winning designers and strategists crafting compelling content", icon: Palette,
|
||||||
description: "Award-winning designers and strategists crafting compelling content",
|
|
||||||
icon: Palette,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Proven Results",
|
title: "Proven Results", description: "Consistent track record of delivering measurable growth for clients", icon: TrendingUp,
|
||||||
description: "Consistent track record of delivering measurable growth for clients",
|
|
||||||
icon: TrendingUp,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "24/7 Support",
|
title: "24/7 Support", description: "Dedicated team ready to support your campaigns at any time", icon: HeadphonesIcon,
|
||||||
description: "Dedicated team ready to support your campaigns at any time",
|
|
||||||
icon: HeadphonesIcon,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/group-friends-planning-trip-cafe_23-2148952348.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/group-friends-planning-trip-cafe_23-2148952348.jpg?_wi=2"
|
||||||
@@ -81,9 +71,7 @@ export default function AboutPage() {
|
|||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "/about"},
|
||||||
href: "about",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -101,34 +89,22 @@ export default function AboutPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Search,
|
icon: Search,
|
||||||
title: "SEO & SEM",
|
title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"},
|
||||||
description: "Dominate search rankings and drive qualified traffic to your website",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Share2,
|
icon: Share2,
|
||||||
title: "Social Media Marketing",
|
title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"},
|
||||||
description: "Build engaged communities and amplify your brand across platforms",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
title: "Email Marketing",
|
title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"},
|
||||||
description: "Convert leads into loyal customers with targeted campaigns",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Video,
|
icon: Video,
|
||||||
title: "Content Creation",
|
title: "Content Creation", description: "Compelling videos, graphics, and copy that resonate with your audience"},
|
||||||
description: "Compelling videos, graphics, and copy that resonate with your audience",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: BarChart3,
|
icon: BarChart3,
|
||||||
title: "Analytics & Reporting",
|
title: "Analytics & Reporting", description: "Transparent insights and actionable data to guide strategy"},
|
||||||
description: "Transparent insights and actionable data to guide strategy",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "Performance Marketing",
|
title: "Performance Marketing", description: "Optimize spend and maximize conversions with precision targeting"},
|
||||||
description: "Optimize spend and maximize conversions with precision targeting",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -142,15 +118,7 @@ export default function AboutPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"TechFlow Inc",
|
"TechFlow Inc", "Aurora Retail", "Momentum Finance", "Zenith Design", "Pulse Health", "Nexus Commerce", "Vertex Solutions", "Horizon Media"]}
|
||||||
"Aurora Retail",
|
|
||||||
"Momentum Finance",
|
|
||||||
"Zenith Design",
|
|
||||||
"Pulse Health",
|
|
||||||
"Nexus Commerce",
|
|
||||||
"Vertex Solutions",
|
|
||||||
"Horizon Media",
|
|
||||||
]}
|
|
||||||
speed={50}
|
speed={50}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
@@ -165,18 +133,13 @@ export default function AboutPage() {
|
|||||||
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
|
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Consultation",
|
text: "Schedule Consultation", href: "/contact"},
|
||||||
href: "contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Services",
|
text: "View Services", href: "/services"},
|
||||||
href: "services",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "animated-grid",
|
variant: "animated-grid"}}
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -185,13 +148,9 @@ export default function AboutPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="DigitalFlow"
|
logoText="DigitalFlow"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service",
|
text: "Terms of Service", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -58,18 +58,13 @@ export default function ContactPage() {
|
|||||||
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
|
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Consultation",
|
text: "Schedule Consultation", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Services",
|
text: "View Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "animated-grid",
|
variant: "animated-grid"}}
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -78,13 +73,9 @@ export default function ContactPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="DigitalFlow"
|
logoText="DigitalFlow"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service",
|
text: "Terms of Service", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
145
src/app/page.tsx
145
src/app/page.tsx
@@ -8,6 +8,7 @@ import FeatureHoverPattern from "@/components/sections/feature/featureHoverPatte
|
|||||||
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
||||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { BarChart3, Palette, TrendingUp, HeadphonesIcon } from "lucide-react";
|
import { BarChart3, Palette, TrendingUp, HeadphonesIcon } from "lucide-react";
|
||||||
@@ -37,9 +38,7 @@ export default function HomePage() {
|
|||||||
{ name: "Contact", id: "#contact" },
|
{ name: "Contact", id: "#contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Get Started",
|
text: "Get Started", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -72,24 +71,16 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Data-Driven Strategy",
|
title: "Data-Driven Strategy", description: "Every campaign is backed by comprehensive analytics and insights", icon: BarChart3,
|
||||||
description: "Every campaign is backed by comprehensive analytics and insights",
|
|
||||||
icon: BarChart3,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Creative Excellence",
|
title: "Creative Excellence", description: "Award-winning designers and strategists crafting compelling content", icon: Palette,
|
||||||
description: "Award-winning designers and strategists crafting compelling content",
|
|
||||||
icon: Palette,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Proven Results",
|
title: "Proven Results", description: "Consistent track record of delivering measurable growth for clients", icon: TrendingUp,
|
||||||
description: "Consistent track record of delivering measurable growth for clients",
|
|
||||||
icon: TrendingUp,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "24/7 Support",
|
title: "24/7 Support", description: "Dedicated team ready to support your campaigns at any time", icon: HeadphonesIcon,
|
||||||
description: "Dedicated team ready to support your campaigns at any time",
|
|
||||||
icon: HeadphonesIcon,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/group-friends-planning-trip-cafe_23-2148952348.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/group-friends-planning-trip-cafe_23-2148952348.jpg?_wi=1"
|
||||||
@@ -113,20 +104,41 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: BarChart3,
|
icon: BarChart3,
|
||||||
title: "SEO & SEM",
|
title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"},
|
||||||
description: "Dominate search rankings and drive qualified traffic to your website",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: TrendingUp,
|
icon: TrendingUp,
|
||||||
title: "Social Media Marketing",
|
title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"},
|
||||||
description: "Build engaged communities and amplify your brand across platforms",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: HeadphonesIcon,
|
icon: HeadphonesIcon,
|
||||||
title: "Email Marketing",
|
title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"},
|
||||||
description: "Convert leads into loyal customers with targeted campaigns",
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="products" data-section="products">
|
||||||
|
<ProductCardOne
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Digital Marketing Strategy", price: "$2,500", imageSrc: "http://img.b2bpic.net/free-photo/marketing-strategy-business-plan-growth-innovation-success-startup_1503-3456.jpg", imageAlt: "Digital marketing strategy planning", onProductClick: () => window.open("/services", "_self"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", name: "SEO Optimization Package", price: "$1,800", imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-seo-analysis-keywords-ranking-strategy_1503-4567.jpg", imageAlt: "SEO optimization services", onProductClick: () => window.open("/services", "_self"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", name: "Social Media Management", price: "$1,500", imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-network-online-community-engagement-digital_1503-5678.jpg", imageAlt: "Social media management platform", onProductClick: () => window.open("/services", "_self"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", name: "Content Marketing Suite", price: "$2,200", imageSrc: "http://img.b2bpic.net/free-photo/content-marketing-strategy-blog-writing-copywriting-engagement_1503-6789.jpg", imageAlt: "Content marketing creation tools", onProductClick: () => window.open("/services", "_self"),
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
title="Premium Services"
|
||||||
|
description="Explore our comprehensive suite of digital marketing solutions designed to drive results"
|
||||||
|
tag="Services"
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -134,38 +146,11 @@ export default function HomePage() {
|
|||||||
<BlogCardThree
|
<BlogCardThree
|
||||||
blogs={[
|
blogs={[
|
||||||
{
|
{
|
||||||
id: "case-1",
|
id: "case-1", category: "E-Commerce", title: "Increased Sales by 250% for Leading Fashion Brand", excerpt: "Strategic SEO, social media, and content marketing campaign", imageSrc: "http://img.b2bpic.net/free-photo/box-market-electronic-ordering-shop-basket_1421-567.jpg?_wi=1", imageAlt: "Fashion brand success case study", authorName: "Sarah Chen", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-confident-blonde-young-businesswoman-with-crossed-arms-leaning-glass-wall_23-2148066805.jpg", date: "Jan 2025"},
|
||||||
category: "E-Commerce",
|
|
||||||
title: "Increased Sales by 250% for Leading Fashion Brand",
|
|
||||||
excerpt: "Strategic SEO, social media, and content marketing campaign",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/box-market-electronic-ordering-shop-basket_1421-567.jpg?_wi=1",
|
|
||||||
imageAlt: "Fashion brand success case study",
|
|
||||||
authorName: "Sarah Chen",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-confident-blonde-young-businesswoman-with-crossed-arms-leaning-glass-wall_23-2148066805.jpg",
|
|
||||||
date: "Jan 2025",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "case-2",
|
id: "case-2", category: "SaaS", title: "B2B SaaS Startup Reached $1M ARR in 12 Months", excerpt: "Growth marketing and customer acquisition optimization", imageSrc: "http://img.b2bpic.net/free-photo/workers-it-company-working-computer_1303-19447.jpg?_wi=1", imageAlt: "SaaS growth milestone case study", authorName: "Marcus Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg", date: "Dec 2024"},
|
||||||
category: "SaaS",
|
|
||||||
title: "B2B SaaS Startup Reached $1M ARR in 12 Months",
|
|
||||||
excerpt: "Growth marketing and customer acquisition optimization",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/workers-it-company-working-computer_1303-19447.jpg?_wi=1",
|
|
||||||
imageAlt: "SaaS growth milestone case study",
|
|
||||||
authorName: "Marcus Rodriguez",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg",
|
|
||||||
date: "Dec 2024",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "case-3",
|
id: "case-3", category: "Hospitality", title: "Luxury Hotel Chain Grew Bookings by 180%", excerpt: "Multi-channel campaign with influencer partnerships", imageSrc: "http://img.b2bpic.net/free-vector/appointment-booking-landing-page_23-2148561432.jpg?_wi=1", imageAlt: "Hotel bookings increase case study", authorName: "Emma Thompson", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman-indoors_23-2148824829.jpg", date: "Nov 2024"},
|
||||||
category: "Hospitality",
|
|
||||||
title: "Luxury Hotel Chain Grew Bookings by 180%",
|
|
||||||
excerpt: "Multi-channel campaign with influencer partnerships",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/appointment-booking-landing-page_23-2148561432.jpg?_wi=1",
|
|
||||||
imageAlt: "Hotel bookings increase case study",
|
|
||||||
authorName: "Emma Thompson",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman-indoors_23-2148824829.jpg",
|
|
||||||
date: "Nov 2024",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Recent Case Studies"
|
title="Recent Case Studies"
|
||||||
description="Explore how we've helped businesses like yours achieve remarkable results"
|
description="Explore how we've helped businesses like yours achieve remarkable results"
|
||||||
@@ -181,41 +166,17 @@ export default function HomePage() {
|
|||||||
<TestimonialCardTwelve
|
<TestimonialCardTwelve
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Jennifer Martinez", imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=1", imageAlt: "Jennifer Martinez"},
|
||||||
name: "Jennifer Martinez",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=1",
|
|
||||||
imageAlt: "Jennifer Martinez",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "David Chen", imageSrc: "http://img.b2bpic.net/free-vector/lovely-pack-male-workers-avatars_23-2147670043.jpg?_wi=1", imageAlt: "David Chen"},
|
||||||
name: "David Chen",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/lovely-pack-male-workers-avatars_23-2147670043.jpg?_wi=1",
|
|
||||||
imageAlt: "David Chen",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg?_wi=1", imageAlt: "Sarah Johnson"},
|
||||||
name: "Sarah Johnson",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg?_wi=1",
|
|
||||||
imageAlt: "Sarah Johnson",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Michael Williams", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-posing-together_23-2149271750.jpg?_wi=1", imageAlt: "Michael Williams"},
|
||||||
name: "Michael Williams",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-posing-together_23-2149271750.jpg?_wi=1",
|
|
||||||
imageAlt: "Michael Williams",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Lisa Anderson", imageSrc: "http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg?_wi=1", imageAlt: "Lisa Anderson"},
|
||||||
name: "Lisa Anderson",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg?_wi=1",
|
|
||||||
imageAlt: "Lisa Anderson",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "James O'Brien", imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-puffing-cheeks-with-funny-face-mouth-inflated-with-air-crazy-expression_839833-2502.jpg?_wi=1", imageAlt: "James O'Brien"},
|
||||||
name: "James O'Brien",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-puffing-cheeks-with-funny-face-mouth-inflated-with-air-crazy-expression_839833-2502.jpg?_wi=1",
|
|
||||||
imageAlt: "James O'Brien",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Trusted by hundreds of businesses worldwide. Join them in transforming your digital presence."
|
cardTitle="Trusted by hundreds of businesses worldwide. Join them in transforming your digital presence."
|
||||||
cardTag="Trusted by Industry Leaders"
|
cardTag="Trusted by Industry Leaders"
|
||||||
@@ -233,15 +194,7 @@ export default function HomePage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"TechFlow Inc",
|
"TechFlow Inc", "Aurora Retail", "Momentum Finance", "Zenith Design", "Pulse Health", "Nexus Commerce", "Vertex Solutions", "Horizon Media"]}
|
||||||
"Aurora Retail",
|
|
||||||
"Momentum Finance",
|
|
||||||
"Zenith Design",
|
|
||||||
"Pulse Health",
|
|
||||||
"Nexus Commerce",
|
|
||||||
"Vertex Solutions",
|
|
||||||
"Horizon Media",
|
|
||||||
]}
|
|
||||||
speed={50}
|
speed={50}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
@@ -251,13 +204,9 @@ export default function HomePage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="DigitalFlow"
|
logoText="DigitalFlow"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service",
|
text: "Terms of Service", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -11,17 +11,15 @@ import { Zap } from "lucide-react";
|
|||||||
|
|
||||||
export default function PortfolioPage() {
|
export default function PortfolioPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Portfolio", id: "portfolio" },
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const navButton = {
|
const navButton = {
|
||||||
text: "Get Started",
|
text: "Get Started", href: "/contact"};
|
||||||
href: "contact",
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -48,38 +46,11 @@ export default function PortfolioPage() {
|
|||||||
<BlogCardThree
|
<BlogCardThree
|
||||||
blogs={[
|
blogs={[
|
||||||
{
|
{
|
||||||
id: "case-1",
|
id: "case-1", category: "E-Commerce", title: "Increased Sales by 250% for Leading Fashion Brand", excerpt: "Strategic SEO, social media, and content marketing campaign", imageSrc: "http://img.b2bpic.net/free-photo/box-market-electronic-ordering-shop-basket_1421-567.jpg?_wi=2", imageAlt: "online shopping e-commerce success growth", authorName: "Sarah Chen", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-confident-blonde-young-businesswoman-with-crossed-arms-leaning-glass-wall_23-2148066805.jpg", date: "Jan 2025"},
|
||||||
category: "E-Commerce",
|
|
||||||
title: "Increased Sales by 250% for Leading Fashion Brand",
|
|
||||||
excerpt: "Strategic SEO, social media, and content marketing campaign",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/box-market-electronic-ordering-shop-basket_1421-567.jpg?_wi=2",
|
|
||||||
imageAlt: "online shopping e-commerce success growth",
|
|
||||||
authorName: "Sarah Chen",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-confident-blonde-young-businesswoman-with-crossed-arms-leaning-glass-wall_23-2148066805.jpg",
|
|
||||||
date: "Jan 2025",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "case-2",
|
id: "case-2", category: "SaaS", title: "B2B SaaS Startup Reached $1M ARR in 12 Months", excerpt: "Growth marketing and customer acquisition optimization", imageSrc: "http://img.b2bpic.net/free-photo/workers-it-company-working-computer_1303-19447.jpg?_wi=2", imageAlt: "SaaS software growth metrics dashboard", authorName: "Marcus Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg", date: "Dec 2024"},
|
||||||
category: "SaaS",
|
|
||||||
title: "B2B SaaS Startup Reached $1M ARR in 12 Months",
|
|
||||||
excerpt: "Growth marketing and customer acquisition optimization",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/workers-it-company-working-computer_1303-19447.jpg?_wi=2",
|
|
||||||
imageAlt: "SaaS software growth metrics dashboard",
|
|
||||||
authorName: "Marcus Rodriguez",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/successful-senior-businessman-standing-window_1262-3120.jpg",
|
|
||||||
date: "Dec 2024",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "case-3",
|
id: "case-3", category: "Hospitality", title: "Luxury Hotel Chain Grew Bookings by 180%", excerpt: "Multi-channel campaign with influencer partnerships", imageSrc: "http://img.b2bpic.net/free-vector/appointment-booking-landing-page_23-2148561432.jpg?_wi=2", imageAlt: "luxury hotel booking success growth", authorName: "Emma Thompson", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman-indoors_23-2148824829.jpg", date: "Nov 2024"},
|
||||||
category: "Hospitality",
|
|
||||||
title: "Luxury Hotel Chain Grew Bookings by 180%",
|
|
||||||
excerpt: "Multi-channel campaign with influencer partnerships",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/appointment-booking-landing-page_23-2148561432.jpg?_wi=2",
|
|
||||||
imageAlt: "luxury hotel booking success growth",
|
|
||||||
authorName: "Emma Thompson",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman-indoors_23-2148824829.jpg",
|
|
||||||
date: "Nov 2024",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Recent Case Studies"
|
title="Recent Case Studies"
|
||||||
description="Explore how we've helped businesses like yours achieve remarkable results"
|
description="Explore how we've helped businesses like yours achieve remarkable results"
|
||||||
@@ -95,41 +66,17 @@ export default function PortfolioPage() {
|
|||||||
<TestimonialCardTwelve
|
<TestimonialCardTwelve
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Jennifer Martinez", imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=2", imageAlt: "professional woman business portrait"},
|
||||||
name: "Jennifer Martinez",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=2",
|
|
||||||
imageAlt: "professional woman business portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "David Chen", imageSrc: "http://img.b2bpic.net/free-vector/lovely-pack-male-workers-avatars_23-2147670043.jpg?_wi=2", imageAlt: "professional man business portrait"},
|
||||||
name: "David Chen",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/lovely-pack-male-workers-avatars_23-2147670043.jpg?_wi=2",
|
|
||||||
imageAlt: "professional man business portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg?_wi=2", imageAlt: "professional woman business portrait"},
|
||||||
name: "Sarah Johnson",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg?_wi=2",
|
|
||||||
imageAlt: "professional woman business portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Michael Williams", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-posing-together_23-2149271750.jpg?_wi=2", imageAlt: "professional man business portrait"},
|
||||||
name: "Michael Williams",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-posing-together_23-2149271750.jpg?_wi=2",
|
|
||||||
imageAlt: "professional man business portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Lisa Anderson", imageSrc: "http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg?_wi=2", imageAlt: "professional woman business portrait"},
|
||||||
name: "Lisa Anderson",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-serious-businessman-looking-camera-meeting-headshot-portrait_1163-3923.jpg?_wi=2",
|
|
||||||
imageAlt: "professional woman business portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "James O'Brien", imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-puffing-cheeks-with-funny-face-mouth-inflated-with-air-crazy-expression_839833-2502.jpg?_wi=2", imageAlt: "professional man business portrait"},
|
||||||
name: "James O'Brien",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-puffing-cheeks-with-funny-face-mouth-inflated-with-air-crazy-expression_839833-2502.jpg?_wi=2",
|
|
||||||
imageAlt: "professional man business portrait",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Trusted by hundreds of businesses worldwide. Join them in transforming your digital presence."
|
cardTitle="Trusted by hundreds of businesses worldwide. Join them in transforming your digital presence."
|
||||||
cardTag="Trusted by Industry Leaders"
|
cardTag="Trusted by Industry Leaders"
|
||||||
@@ -147,18 +94,13 @@ export default function PortfolioPage() {
|
|||||||
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
|
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Consultation",
|
text: "Schedule Consultation", href: "/contact"},
|
||||||
href: "contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Services",
|
text: "View Services", href: "/services"},
|
||||||
href: "services",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "animated-grid",
|
variant: "animated-grid"}}
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -167,13 +109,9 @@ export default function PortfolioPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="DigitalFlow"
|
logoText="DigitalFlow"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service",
|
text: "Terms of Service", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -29,14 +29,12 @@ export default function ServicesPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Portfolio", id: "#portfolio" },
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{ name: "About", id: "#about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Contact", id: "#contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Get Started",
|
text: "Get Started", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -52,34 +50,22 @@ export default function ServicesPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Search,
|
icon: Search,
|
||||||
title: "SEO & SEM",
|
title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"},
|
||||||
description: "Dominate search rankings and drive qualified traffic to your website",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Share2,
|
icon: Share2,
|
||||||
title: "Social Media Marketing",
|
title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"},
|
||||||
description: "Build engaged communities and amplify your brand across platforms",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
title: "Email Marketing",
|
title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"},
|
||||||
description: "Convert leads into loyal customers with targeted campaigns",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Video,
|
icon: Video,
|
||||||
title: "Content Creation",
|
title: "Content Creation", description: "Compelling videos, graphics, and copy that resonate with your audience"},
|
||||||
description: "Compelling videos, graphics, and copy that resonate with your audience",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: BarChart3,
|
icon: BarChart3,
|
||||||
title: "Analytics & Reporting",
|
title: "Analytics & Reporting", description: "Transparent insights and actionable data to guide strategy"},
|
||||||
description: "Transparent insights and actionable data to guide strategy",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "Performance Marketing",
|
title: "Performance Marketing", description: "Optimize spend and maximize conversions with precision targeting"},
|
||||||
description: "Optimize spend and maximize conversions with precision targeting",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -88,52 +74,22 @@ export default function ServicesPage() {
|
|||||||
<PricingCardEight
|
<PricingCardEight
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "starter",
|
id: "starter", badge: "Great to Start", badgeIcon: Rocket,
|
||||||
badge: "Great to Start",
|
price: "$2,500", subtitle: "Per month • Billed monthly", buttons: [{ text: "Get Started", href: "#contact" }],
|
||||||
badgeIcon: Rocket,
|
|
||||||
price: "$2,500",
|
|
||||||
subtitle: "Per month • Billed monthly",
|
|
||||||
buttons: [{ text: "Get Started", href: "#contact" }],
|
|
||||||
features: [
|
features: [
|
||||||
"SEO optimization for 5 keywords",
|
"SEO optimization for 5 keywords", "Social media management (2 platforms)", "Monthly reporting and analytics", "Email support", "Content calendar planning"],
|
||||||
"Social media management (2 platforms)",
|
|
||||||
"Monthly reporting and analytics",
|
|
||||||
"Email support",
|
|
||||||
"Content calendar planning",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "professional",
|
id: "professional", badge: "Most Popular", badgeIcon: Star,
|
||||||
badge: "Most Popular",
|
price: "$5,000", subtitle: "Per month • Billed monthly", buttons: [{ text: "Get Started", href: "#contact" }],
|
||||||
badgeIcon: Star,
|
|
||||||
price: "$5,000",
|
|
||||||
subtitle: "Per month • Billed monthly",
|
|
||||||
buttons: [{ text: "Get Started", href: "#contact" }],
|
|
||||||
features: [
|
features: [
|
||||||
"SEO optimization for 20+ keywords",
|
"SEO optimization for 20+ keywords", "Social media management (4 platforms)", "PPC campaign management", "Weekly reporting and strategy calls", "Video content creation (2/month)", "Email and phone support"],
|
||||||
"Social media management (4 platforms)",
|
|
||||||
"PPC campaign management",
|
|
||||||
"Weekly reporting and strategy calls",
|
|
||||||
"Video content creation (2/month)",
|
|
||||||
"Email and phone support",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "enterprise",
|
id: "enterprise", badge: "Maximum Growth", badgeIcon: Crown,
|
||||||
badge: "Maximum Growth",
|
price: "Custom", subtitle: "Per month • Let's discuss", buttons: [{ text: "Schedule Call", href: "#contact" }],
|
||||||
badgeIcon: Crown,
|
|
||||||
price: "Custom",
|
|
||||||
subtitle: "Per month • Let's discuss",
|
|
||||||
buttons: [{ text: "Schedule Call", href: "#contact" }],
|
|
||||||
features: [
|
features: [
|
||||||
"Full-service digital marketing suite",
|
"Full-service digital marketing suite", "Dedicated account team", "Custom strategy and reporting", "Influencer partnerships", "Brand development and positioning", "24/7 priority support", "Quarterly business reviews"],
|
||||||
"Dedicated account team",
|
|
||||||
"Custom strategy and reporting",
|
|
||||||
"Influencer partnerships",
|
|
||||||
"Brand development and positioning",
|
|
||||||
"24/7 priority support",
|
|
||||||
"Quarterly business reviews",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -167,13 +123,9 @@ export default function ServicesPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="DigitalFlow"
|
logoText="DigitalFlow"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service",
|
text: "Terms of Service", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user