Compare commits
8 Commits
version_15
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
| 0cebae0b35 | |||
| 87d6c6b5b8 | |||
| 12e84fa241 | |||
| 79049b564f | |||
| fd0aaeca5c | |||
| 0e4d7af4e9 | |||
| 1cfb6e4166 | |||
| bc2ef84e64 |
@@ -10,12 +10,14 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import { Sparkles, TrendingUp, Zap, Shield, Hexagon, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send, Twitter, Linkedin, Globe, Check } from 'lucide-react';
|
||||
|
||||
const page = () => {
|
||||
const navItems = [
|
||||
{ name: 'Home', id: '/' },
|
||||
{ name: 'Services', id: '#services' },
|
||||
{ name: 'Gallery', id: '#gallery' },
|
||||
{ name: 'Process', id: '#process' },
|
||||
{ name: 'Testimonials', id: '#testimonials' },
|
||||
{ name: 'Pricing', id: '#pricing' },
|
||||
@@ -26,7 +28,7 @@ const page = () => {
|
||||
id: '01',
|
||||
title: 'Website & Branding',
|
||||
description: 'Build a stunning online presence with custom website design and cohesive branding that represents your business.',
|
||||
imageSrc: 'https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=600&fit=crop',
|
||||
imageSrc: 'https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=600&fit=crop&_wi=1',
|
||||
imageAlt: 'Website and branding design'
|
||||
},
|
||||
{
|
||||
@@ -40,14 +42,14 @@ const page = () => {
|
||||
id: '03',
|
||||
title: 'Advertising Services',
|
||||
description: 'Targeted advertising campaigns that reach your audience and drive measurable results across multiple channels.',
|
||||
imageSrc: 'https://images.unsplash.com/photo-1460925895917-adf4198c868f?w=800&h=600&fit=crop',
|
||||
imageSrc: 'https://images.unsplash.com/photo-1460925895917-adf4198c868f?w=800&h=600&fit=crop&_wi=1',
|
||||
imageAlt: 'Advertising services dashboard'
|
||||
},
|
||||
{
|
||||
id: '04',
|
||||
title: 'Social Media Management',
|
||||
description: 'Engage your audience with compelling content, community management, and strategic social media presence.',
|
||||
imageSrc: 'https://images.unsplash.com/photo-1611532736540-6dabab387e13?w=800&h=600&fit=crop',
|
||||
imageSrc: 'https://images.unsplash.com/photo-1611532736540-6dabab387e13?w=800&h=600&fit=crop&_wi=1',
|
||||
imageAlt: 'Social media management tools'
|
||||
},
|
||||
{
|
||||
@@ -66,6 +68,25 @@ const page = () => {
|
||||
}
|
||||
];
|
||||
|
||||
const galleryItems = [
|
||||
{
|
||||
imageSrc: 'https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=600&fit=crop&_wi=2',
|
||||
imageAlt: 'Website redesign showcase'
|
||||
},
|
||||
{
|
||||
imageSrc: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop',
|
||||
imageAlt: 'Brand identity project'
|
||||
},
|
||||
{
|
||||
imageSrc: 'https://images.unsplash.com/photo-1460925895917-adf4198c868f?w=800&h=600&fit=crop&_wi=2',
|
||||
imageAlt: 'Marketing campaign results'
|
||||
},
|
||||
{
|
||||
imageSrc: 'https://images.unsplash.com/photo-1611532736540-6dabab387e13?w=800&h=600&fit=crop&_wi=2',
|
||||
imageAlt: 'Social media strategy implementation'
|
||||
}
|
||||
];
|
||||
|
||||
const testimonials = [
|
||||
{
|
||||
id: '1',
|
||||
@@ -116,7 +137,43 @@ const page = () => {
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
badge: 'Marketing & Social Media',
|
||||
badge: 'Consulting & Strategy',
|
||||
badgeIcon: TrendingUp,
|
||||
price: '$1,999/mo',
|
||||
subtitle: 'Expert consulting and strategic business guidance',
|
||||
buttons: [
|
||||
{ text: 'Get Started', href: 'https://example.com/start' },
|
||||
{ text: 'Contact Sales', href: 'https://example.com/sales' }
|
||||
],
|
||||
features: [
|
||||
'Business strategy sessions',
|
||||
'Expert consulting',
|
||||
'Growth planning',
|
||||
'Monthly strategy reviews',
|
||||
'Implementation support'
|
||||
]
|
||||
},
|
||||
{
|
||||
id: '3',
|
||||
badge: 'Advertising Services',
|
||||
badgeIcon: Zap,
|
||||
price: '$1,499/mo',
|
||||
subtitle: 'Targeted advertising campaigns across multiple channels',
|
||||
buttons: [
|
||||
{ text: 'Get Started', href: 'https://example.com/start' },
|
||||
{ text: 'View Cases', href: 'https://example.com/cases' }
|
||||
],
|
||||
features: [
|
||||
'Multi-channel advertising',
|
||||
'Campaign management',
|
||||
'Performance tracking',
|
||||
'Monthly analytics reports',
|
||||
'Ad optimization'
|
||||
]
|
||||
},
|
||||
{
|
||||
id: '4',
|
||||
badge: 'Social Media Management',
|
||||
badgeIcon: TrendingUp,
|
||||
price: '$1,499/mo',
|
||||
subtitle: 'Complete marketing and social media management',
|
||||
@@ -133,7 +190,25 @@ const page = () => {
|
||||
]
|
||||
},
|
||||
{
|
||||
id: '3',
|
||||
id: '5',
|
||||
badge: 'AI Call Assistant & Automation',
|
||||
badgeIcon: Hexagon,
|
||||
price: '$999/mo',
|
||||
subtitle: 'Intelligent call handling and business automation',
|
||||
buttons: [
|
||||
{ text: 'Get Started', href: 'https://example.com/start' },
|
||||
{ text: 'Schedule Demo', href: 'https://example.com/demo' }
|
||||
],
|
||||
features: [
|
||||
'AI call assistant',
|
||||
'Automated workflows',
|
||||
'Call analytics',
|
||||
'Integration support',
|
||||
'24/7 monitoring'
|
||||
]
|
||||
},
|
||||
{
|
||||
id: '6',
|
||||
badge: 'Bundled Enterprise',
|
||||
badgeIcon: Shield,
|
||||
price: '$4,999/mo',
|
||||
@@ -260,6 +335,18 @@ const page = () => {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<HeroBillboardGallery
|
||||
title="Our Work"
|
||||
description="Showcase of our latest projects and creative solutions."
|
||||
tag="Gallery"
|
||||
tagIcon={Sparkles}
|
||||
mediaItems={galleryItems}
|
||||
background={{ variant: 'plain' }}
|
||||
mediaAnimation="none"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="process" data-section="process">
|
||||
<TimelineHorizontalCardStack
|
||||
title="Our Process"
|
||||
|
||||
Reference in New Issue
Block a user