Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| df62b784bf |
226
src/app/page.tsx
226
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Digital Casa"
|
brandName="Digital Casa"
|
||||||
/>
|
/>
|
||||||
@@ -55,62 +47,39 @@ export default function LandingPage() {
|
|||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Elevate Your Brand with Digital Casa"
|
title="Elevate Your Brand with Digital Casa"
|
||||||
description="We craft bespoke digital marketing strategies to accelerate growth and maximize your ROI in the modern landscape."
|
description="We craft bespoke digital marketing strategies to accelerate growth and maximize your ROI in the modern landscape."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Start Strategy",
|
text: "Get Your Free Strategy Audit", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/empty-company-office-with-workstation-desk-business-development-space-filled-with-documents-computers-corporation-department-room-used-career-development-success_482257-60055.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/empty-company-office-with-workstation-desk-business-development-space-filled-with-documents-computers-corporation-department-room-used-career-development-success_482257-60055.jpg"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-businessman-with-arms-crossed_329181-678.jpg",
|
src: "http://img.b2bpic.net/free-photo/smiling-businessman-with-arms-crossed_329181-678.jpg", alt: "Team member"},
|
||||||
alt: "Team member",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg",
|
src: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg", alt: "Team member"},
|
||||||
alt: "Team member",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-asian-business-man-business-district-senior-visionary-executives-leader-with-business-vision-lifestyle-business-people-concept_1150-34735.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-asian-business-man-business-district-senior-visionary-executives-leader-with-business-vision-lifestyle-business-people-concept_1150-34735.jpg", alt: "Team member"},
|
||||||
alt: "Team member",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5357.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-young-confident-businessman-wearing-glasses_158595-5357.jpg", alt: "Team member"},
|
||||||
alt: "Team member",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg",
|
src: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg", alt: "Team member"},
|
||||||
alt: "Team member",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ growing brands"
|
avatarText="Trusted by 500+ growing brands"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Data-Driven"},
|
||||||
text: "Data-Driven",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Growth Focused"},
|
||||||
text: "Growth Focused",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Bespoke Design"},
|
||||||
text: "Bespoke Design",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "SEO Optimized"},
|
||||||
text: "SEO Optimized",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "ROI Focused"},
|
||||||
text: "ROI Focused",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -120,14 +89,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "The Digital Casa Agency"},
|
||||||
content: "The Digital Casa Agency",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797672.jpg", alt: "About Digital Casa"},
|
||||||
src: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797672.jpg",
|
|
||||||
alt: "About Digital Casa",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -139,26 +103,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "SEO Strategy", description: "Rank higher and dominate search results.", tag: "Strategy", imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-up-blue-letters-forming-word-marketing_53876-146859.jpg"},
|
||||||
title: "SEO Strategy",
|
|
||||||
description: "Rank higher and dominate search results.",
|
|
||||||
tag: "Strategy",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-up-blue-letters-forming-word-marketing_53876-146859.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "Social Growth", description: "Engaging content that drives active community participation.", tag: "Social", imageSrc: "http://img.b2bpic.net/free-photo/heart-like-love-social-media-icon-transparent-psd-file_460848-6803.jpg"},
|
||||||
title: "Social Growth",
|
|
||||||
description: "Engaging content that drives active community participation.",
|
|
||||||
tag: "Social",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/heart-like-love-social-media-icon-transparent-psd-file_460848-6803.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Performance Content", description: "Creative assets built for conversion and clarity.", tag: "Content", imageSrc: "http://img.b2bpic.net/free-photo/analysis-text-frame_53876-120801.jpg"},
|
||||||
title: "Performance Content",
|
|
||||||
description: "Creative assets built for conversion and clarity.",
|
|
||||||
tag: "Content",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/analysis-text-frame_53876-120801.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Specialized Marketing Services"
|
title="Our Specialized Marketing Services"
|
||||||
description="Driving engagement, traffic, and conversion through research-backed digital solutions."
|
description="Driving engagement, traffic, and conversion through research-backed digital solutions."
|
||||||
@@ -173,47 +122,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Basic Audit", price: "$999", variant: "Essential", imageSrc: "http://img.b2bpic.net/free-photo/travel-agent-offering-trip-planning-clients_23-2149079489.jpg"},
|
||||||
name: "Basic Audit",
|
|
||||||
price: "$999",
|
|
||||||
variant: "Essential",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/travel-agent-offering-trip-planning-clients_23-2149079489.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "SEO Boost", price: "$1,499", variant: "Optimization", imageSrc: "http://img.b2bpic.net/free-photo/stats-concept-with-arrow-laptop_23-2148950392.jpg"},
|
||||||
name: "SEO Boost",
|
|
||||||
price: "$1,499",
|
|
||||||
variant: "Optimization",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stats-concept-with-arrow-laptop_23-2148950392.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Social Campaign", price: "$2,999", variant: "Management", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-smartphone-social-media-concept_23-2150208252.jpg"},
|
||||||
name: "Social Campaign",
|
|
||||||
price: "$2,999",
|
|
||||||
variant: "Management",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-smartphone-social-media-concept_23-2150208252.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Email Suite", price: "$1,299", variant: "Retention", imageSrc: "http://img.b2bpic.net/free-photo/customer-evaluation-feedback-smiley-emoticons_53876-125543.jpg"},
|
||||||
name: "Email Suite",
|
|
||||||
price: "$1,299",
|
|
||||||
variant: "Retention",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/customer-evaluation-feedback-smiley-emoticons_53876-125543.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "PPC Management", price: "$3,499", variant: "Advertising", imageSrc: "http://img.b2bpic.net/free-photo/smartphone-with-displays_1134-344.jpg"},
|
||||||
name: "PPC Management",
|
|
||||||
price: "$3,499",
|
|
||||||
variant: "Advertising",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smartphone-with-displays_1134-344.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Brand Design", price: "$4,999", variant: "Identity", imageSrc: "http://img.b2bpic.net/free-photo/white-card-with-european-flag-purple-background-close-up_23-2148265624.jpg"},
|
||||||
name: "Brand Design",
|
|
||||||
price: "$4,999",
|
|
||||||
variant: "Identity",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/white-card-with-european-flag-purple-background-close-up_23-2148265624.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Marketing Packages"
|
title="Marketing Packages"
|
||||||
description="Tailored service offerings for brands of all sizes."
|
description="Tailored service offerings for brands of all sizes."
|
||||||
@@ -227,20 +146,11 @@ export default function LandingPage() {
|
|||||||
tag="Results"
|
tag="Results"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "200%", description: "Average traffic growth"},
|
||||||
value: "200%",
|
|
||||||
description: "Average traffic growth",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "15x", description: "Higher engagement rates"},
|
||||||
value: "15x",
|
|
||||||
description: "Higher engagement rates",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "500+", description: "Successful projects"},
|
||||||
value: "500+",
|
|
||||||
description: "Successful projects",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -254,45 +164,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Alex Smith", role: "CMO", company: "Innovate", rating: 5,
|
||||||
name: "Alex Smith",
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-with-arms-folded-isolated-white_231208-13007.jpg"},
|
||||||
role: "CMO",
|
|
||||||
company: "Innovate",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-with-arms-folded-isolated-white_231208-13007.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Sarah Miller", role: "CEO", company: "Vantage", rating: 5,
|
||||||
name: "Sarah Miller",
|
imageSrc: "http://img.b2bpic.net/free-photo/project-leder-with-disabilities-looking-front-sitting-immobilized-wheelchair-business-office-room_482257-2404.jpg"},
|
||||||
role: "CEO",
|
|
||||||
company: "Vantage",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/project-leder-with-disabilities-looking-front-sitting-immobilized-wheelchair-business-office-room_482257-2404.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "James Bond", role: "Founder", company: "TechSolutions", rating: 5,
|
||||||
name: "James Bond",
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-real-estate-agent_23-2151064809.jpg"},
|
||||||
role: "Founder",
|
|
||||||
company: "TechSolutions",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-real-estate-agent_23-2151064809.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Maria Lopez", role: "Director", company: "RetailCorp", rating: 5,
|
||||||
name: "Maria Lopez",
|
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg"},
|
||||||
role: "Director",
|
|
||||||
company: "RetailCorp",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-employee-with-crossed-arms_1098-3148.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Kenji Sato", role: "Manager", company: "GlobalReach", rating: 5,
|
||||||
name: "Kenji Sato",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-blue-jacket-with-paint-brush-stroke_23-2149020772.jpg"},
|
||||||
role: "Manager",
|
|
||||||
company: "GlobalReach",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-blue-jacket-with-paint-brush-stroke_23-2149020772.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Client Success Stories"
|
title="Client Success Stories"
|
||||||
description="Building enduring partnerships across various industries."
|
description="Building enduring partnerships across various industries."
|
||||||
@@ -305,20 +190,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "How do we start?", content: "Schedule a discovery call via our form."},
|
||||||
title: "How do we start?",
|
|
||||||
content: "Schedule a discovery call via our form.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "What is the timeline?", content: "Projects typically range 4-12 weeks."},
|
||||||
title: "What is the timeline?",
|
|
||||||
content: "Projects typically range 4-12 weeks.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "Do you offer reporting?", content: "Yes, monthly reports provided."},
|
||||||
title: "Do you offer reporting?",
|
|
||||||
content: "Yes, monthly reports provided.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Common inquiries about our marketing process."
|
description="Common inquiries about our marketing process."
|
||||||
@@ -333,22 +209,14 @@ export default function LandingPage() {
|
|||||||
description="Ready to scale your digital presence? Get in touch today."
|
description="Ready to scale your digital presence? Get in touch today."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
name: "name",
|
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||||
type: "text",
|
|
||||||
placeholder: "Your Name",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "email",
|
name: "email", type: "email", placeholder: "Email Address", required: true,
|
||||||
type: "email",
|
|
||||||
placeholder: "Email Address",
|
|
||||||
required: true,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message",
|
name: "message", placeholder: "Tell us about your project", rows: 4,
|
||||||
placeholder: "Tell us about your project",
|
|
||||||
rows: 4,
|
|
||||||
}}
|
}}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-skyscraper-with-architecture-building-around-city_74190-1080.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/beautiful-skyscraper-with-architecture-building-around-city_74190-1080.jpg"
|
||||||
/>
|
/>
|
||||||
@@ -363,4 +231,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user