Merge version_1 into main #2

Merged
bender merged 5 commits from version_1 into main 2026-05-01 10:52:38 +00:00
5 changed files with 98 additions and 556 deletions

View File

@@ -8,7 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TextAbout from '@/components/sections/about/TextAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -26,28 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Pulse Agency"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
@@ -63,12 +49,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Journey"
description="Building impact since 2015."
metrics={[
{
value: "10",
title: "Years Exp",
},
]}
metrics={[{ value: "10", title: "Years Exp" }]}
imageSrc="http://img.b2bpic.net/free-photo/people-working-tech-brand-together_23-2150966118.jpg"
mediaAnimation="none"
metricsAnimation="none"
@@ -81,58 +62,18 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Partners"
description="Working with the best."
names={[
"A",
"B",
"C",
]}
names={["A", "B", "C"]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg"
logoText="Pulse Agency"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Services",
items: [
{
label: "Strategy",
href: "/services",
},
{
label: "Design",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }] },
{ title: "Services", items: [{ label: "Strategy", href: "/services" }, { label: "Design", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>

View File

@@ -7,7 +7,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,46 +25,25 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Pulse Agency"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
tag="Let's Talk"
title="Ready to Launch?"
description="We are accepting new projects and are ready to push your brand to the next level."
buttons={[
{
text: "Contact Us",
href: "#",
},
]}
buttons={[{ text: "Contact Us", href: "#" }]}
/>
</div>
@@ -74,58 +53,18 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Let's work together"
description="We are ready."
names={[
"Email",
"Phone",
"Visit",
]}
names={["Email", "Phone", "Visit"]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg?_wi=5"
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg"
logoText="Pulse Agency"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Services",
items: [
{
label: "Strategy",
href: "/services",
},
{
label: "Design",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }] },
{ title: "Services", items: [{ label: "Strategy", href: "/services" }, { label: "Design", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>

View File

@@ -28,98 +28,43 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Pulse Agency"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="Elevate Your Brand"
description="We blend creativity with data-driven strategy to build brands that leave a lasting impact in the digital landscape."
kpis={[
{
value: "150+",
label: "Projects Delivered",
},
{
value: "95%",
label: "Retention Rate",
},
{
value: "10B+",
label: "Impressions Served",
},
{ value: "150+", label: "Projects Delivered" },
{ value: "95%", label: "Retention Rate" },
{ value: "10B+", label: "Impressions Served" },
]}
enableKpiAnimation={true}
imageSrc="http://img.b2bpic.net/free-photo/abstract-background-with-colorful-lights_23-2147881583.jpg"
mediaAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/modern-watercolor-background-with-abstract-design_23-2147923041.jpg",
alt: "Team member 1",
},
{
src: "http://img.b2bpic.net/free-photo/abstract-shapes-pattern_1017-2490.jpg",
alt: "Team member 2",
},
{
src: "http://img.b2bpic.net/free-photo/modern-watercolor-background-with-abstract-design_23-2147923090.jpg",
alt: "Team member 3",
},
{
src: "http://img.b2bpic.net/free-photo/portrait-schoolgirl-with-globe_23-2148203843.jpg",
alt: "Team member 4",
},
{
src: "http://img.b2bpic.net/free-photo/people-working-tech-brand-together_23-2150966118.jpg",
alt: "Team member 5",
},
{ src: "http://img.b2bpic.net/free-photo/modern-watercolor-background-with-abstract-design_23-2147923041.jpg", alt: "Team member 1" },
{ src: "http://img.b2bpic.net/free-photo/abstract-shapes-pattern_1017-2490.jpg", alt: "Team member 2" },
{ src: "http://img.b2bpic.net/free-photo/modern-watercolor-background-with-abstract-design_23-2147923090.jpg", alt: "Team member 3" },
{ src: "http://img.b2bpic.net/free-photo/portrait-schoolgirl-with-globe_23-2148203843.jpg", alt: "Team member 4" },
{ src: "http://img.b2bpic.net/free-photo/people-working-tech-brand-together_23-2150966118.jpg", alt: "Team member 5" },
]}
marqueeItems={[
{
type: "text",
text: "Global Reach",
},
{
type: "text",
text: "Creative Strategy",
},
{
type: "text",
text: "Data Driven",
},
{
type: "text",
text: "Impact First",
},
{
type: "text",
text: "Brand Vision",
},
{ type: "text", text: "Global Reach" },
{ type: "text", text: "Creative Strategy" },
{ type: "text", text: "Data Driven" },
{ type: "text", text: "Impact First" },
{ type: "text", text: "Brand Vision" },
]}
/>
</div>
@@ -130,41 +75,11 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{
id: "1",
name: "Sarah J.",
handle: "@sarahj",
testimonial: "Transformative agency. They truly understand modern branding.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg",
},
{
id: "2",
name: "Mark L.",
handle: "@markl",
testimonial: "Exceptional results. Our engagement jumped 200%.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-bearded-man-suit_23-2149705921.jpg",
},
{
id: "3",
name: "Elena R.",
handle: "@elenar",
testimonial: "They breathe life into every creative brief we send.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businesswoman-sitting-bench-holding-takeaway-coffee-cup-talking-cell-phone_23-2147972810.jpg",
},
{
id: "4",
name: "David K.",
handle: "@davidk",
testimonial: "Top-tier strategy and professional execution.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-man-sitting-desk_329181-15290.jpg",
},
{
id: "5",
name: "Lucy M.",
handle: "@lucym",
testimonial: "Pulse Agency is the best partner we've had in years.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-workspace-equipped-digital-design-photo-editing_482257-125052.jpg",
},
{ id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "Transformative agency. They truly understand modern branding.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg" },
{ id: "2", name: "Mark L.", handle: "@markl", testimonial: "Exceptional results. Our engagement jumped 200%.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-bearded-man-suit_23-2149705921.jpg" },
{ id: "3", name: "Elena R.", handle: "@elenar", testimonial: "They breathe life into every creative brief we send.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businesswoman-sitting-bench-holding-takeaway-coffee-cup-talking-cell-phone_23-2147972810.jpg" },
{ id: "4", name: "David K.", handle: "@davidk", testimonial: "Top-tier strategy and professional execution.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-man-sitting-desk_329181-15290.jpg" },
{ id: "5", name: "Lucy M.", handle: "@lucym", testimonial: "Pulse Agency is the best partner we've had in years.", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-workspace-equipped-digital-design-photo-editing_482257-125052.jpg" },
]}
title="Client Voices"
description="Partners who trust our vision."
@@ -177,13 +92,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Trusted by Industry Leaders"
description="Our work has empowered some of the world's most innovative brands."
names={[
"TechCorp",
"InnovateX",
"GlobalRetail",
"EcoSolutions",
"SaaSGrowth",
]}
names={["TechCorp", "InnovateX", "GlobalRetail", "EcoSolutions", "SaaSGrowth"]}
/>
</div>
@@ -195,39 +104,8 @@ export default function LandingPage() {
title="Our Engagement Models"
description="Flexible collaboration options to suit your goals."
plans={[
{
id: "starter",
badge: "Essential",
price: "$5,000",
subtitle: "Perfect for quick projects",
buttons: [
{
text: "Select",
href: "#",
},
],
features: [
"Brand Audit",
"Basic Strategy",
],
},
{
id: "growth",
badge: "Recommended",
price: "$12,000",
subtitle: "For scaling brands",
buttons: [
{
text: "Select",
href: "#",
},
],
features: [
"Full Branding",
"Digital Campaign",
"Content Calendar",
],
},
{ id: "starter", badge: "Essential", price: "$5,000", subtitle: "Perfect for quick projects", buttons: [{ text: "Select", href: "#" }], features: ["Brand Audit", "Basic Strategy"] },
{ id: "growth", badge: "Recommended", price: "$12,000", subtitle: "For scaling brands", buttons: [{ text: "Select", href: "#" }], features: ["Full Branding", "Digital Campaign", "Content Calendar"] },
]}
/>
</div>
@@ -238,14 +116,8 @@ export default function LandingPage() {
title="Data-Driven Success"
description="We don't just create; we deliver measurable performance."
metrics={[
{
value: "200%",
title: "Avg Growth",
},
{
value: "50+",
title: "Awards",
},
{ value: "200%", title: "Avg Growth" },
{ value: "50+", title: "Awards" },
]}
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-workers-office-working-together-finishing-project_482257-126470.jpg"
mediaAnimation="slide-up"
@@ -255,48 +127,12 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg"
logoText="Pulse Agency"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Services",
items: [
{
label: "Strategy",
href: "/services",
},
{
label: "Design",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }] },
{ title: "Services", items: [{ label: "Strategy", href: "/services" }, { label: "Design", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>

View File

@@ -8,7 +8,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function PortfolioPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -26,73 +26,30 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Pulse Agency"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="portfolio-inner" data-section="portfolio-inner">
<ProductCardThree
animationType="slide-up"
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={true}
products={[
{
id: "1",
name: "Tech Startup Launch",
price: "Featured",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-creation-made-from-3d-geometric-shapes_23-2150829271.jpg",
},
{
id: "2",
name: "Global Retail Campaign",
price: "Award Winning",
imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-front-side-white-background_187299-40172.jpg",
},
{
id: "3",
name: "Luxury SaaS Rebrand",
price: "Strategy",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk_23-2150440907.jpg",
},
{
id: "4",
name: "Impactful Social Media",
price: "Growth",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-purple-tin-cans-with-copy-space_23-2148785262.jpg",
},
{
id: "5",
name: "Eco Product Packaging",
price: "Design",
imageSrc: "http://img.b2bpic.net/free-photo/multiple-lightbulb-designs_53876-16171.jpg",
},
{
id: "6",
name: "B2B Lead Generation",
price: "Conversion",
imageSrc: "http://img.b2bpic.net/free-photo/hands-showing-content-balloons-word_53876-165228.jpg",
},
{ id: "1", name: "Tech Startup Launch", price: "Featured", imageSrc: "http://img.b2bpic.net/free-photo/abstract-creation-made-from-3d-geometric-shapes_23-2150829271.jpg" },
{ id: "2", name: "Global Retail Campaign", price: "Award Winning", imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-front-side-white-background_187299-40172.jpg" },
{ id: "3", name: "Luxury SaaS Rebrand", price: "Strategy", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-measuring-tools-desk_23-2150440907.jpg" },
{ id: "4", name: "Impactful Social Media", price: "Growth", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-purple-tin-cans-with-copy-space_23-2148785262.jpg" },
{ id: "5", name: "Eco Product Packaging", price: "Design", imageSrc: "http://img.b2bpic.net/free-photo/multiple-lightbulb-designs_53876-16171.jpg" },
{ id: "6", name: "B2B Lead Generation", price: "Conversion", imageSrc: "http://img.b2bpic.net/free-photo/hands-showing-content-balloons-word_53876-165228.jpg" },
]}
title="Selected Work"
description="See the results of our recent collaborations."
@@ -103,13 +60,7 @@ export default function LandingPage() {
<ProductCatalog
layout="section"
products={[
{
id: "1",
name: "Work 1",
price: "$100",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-geometric-floating-shapes_23-2150979594.jpg",
},
{ id: "1", name: "Work 1", price: "$100", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-geometric-floating-shapes_23-2150979594.jpg" },
]}
/>
</div>
@@ -120,58 +71,18 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Portfolio Highlights"
description="Diverse expertise."
names={[
"Design",
"Strategy",
"Tech",
]}
names={["Design", "Strategy", "Tech"]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg"
logoText="Pulse Agency"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Services",
items: [
{
label: "Strategy",
href: "/services",
},
{
label: "Design",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }] },
{ title: "Services", items: [{ label: "Strategy", href: "/services" }, { label: "Design", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -26,28 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="Pulse Agency"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
@@ -58,21 +44,9 @@ export default function LandingPage() {
gridVariant="bento-grid"
useInvertedBackground={false}
features={[
{
title: "Brand Strategy",
description: "Defining your core identity and messaging for maximum impact.",
imageSrc: "http://img.b2bpic.net/free-photo/organized-workbench-black-white-background-with-leaf-branch_23-2148296272.jpg",
},
{
title: "Digital Growth",
description: "Targeted campaigns that reach and convert your audience.",
imageSrc: "http://img.b2bpic.net/free-photo/creative-thinking-creativity-design-process-concept_53876-127465.jpg",
},
{
title: "Content Design",
description: "Visual storytelling that captivates and informs stakeholders.",
imageSrc: "http://img.b2bpic.net/free-photo/office-supplies-black-table_171337-13076.jpg",
},
{ title: "Brand Strategy", description: "Defining your core identity and messaging for maximum impact.", imageSrc: "http://img.b2bpic.net/free-photo/organized-workbench-black-white-background-with-leaf-branch_23-2148296272.jpg" },
{ title: "Digital Growth", description: "Targeted campaigns that reach and convert your audience.", imageSrc: "http://img.b2bpic.net/free-photo/creative-thinking-creativity-design-process-concept_53876-127465.jpg" },
{ title: "Content Design", description: "Visual storytelling that captivates and informs stakeholders.", imageSrc: "http://img.b2bpic.net/free-photo/office-supplies-black-table_171337-13076.jpg" },
]}
title="Creative Services"
description="Expert solutions crafted to accelerate growth."
@@ -86,16 +60,8 @@ export default function LandingPage() {
title="Our Core Expertise"
description="Tailored solutions."
features={[
{
title: "Service A",
description: "Details about A",
imageSrc: "http://img.b2bpic.net/free-photo/design-style-graphic-creativity-ideas-illustration-concept_53876-121068.jpg",
},
{
title: "Service B",
description: "Details about B",
imageSrc: "http://img.b2bpic.net/free-photo/rocket-launch-spaceship-icon-innovation_53876-124331.jpg",
},
{ title: "Service A", description: "Details about A", imageSrc: "http://img.b2bpic.net/free-photo/design-style-graphic-creativity-ideas-illustration-concept_53876-121068.jpg" },
{ title: "Service B", description: "Details about B", imageSrc: "http://img.b2bpic.net/free-photo/rocket-launch-spaceship-icon-innovation_53876-124331.jpg" },
]}
/>
</div>
@@ -108,70 +74,19 @@ export default function LandingPage() {
title="Transparent Pricing"
description="Clear costs."
plans={[
{
id: "p1",
badge: "Go",
price: "$100",
subtitle: "Start",
buttons: [
{
text: "Buy",
href: "#",
},
],
features: [
"F1",
"F2",
],
},
{ id: "p1", badge: "Go", price: "$100", subtitle: "Start", buttons: [{ text: "Buy", href: "#" }], features: ["F1", "F2"] },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg"
logoText="Pulse Agency"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
},
{
title: "Services",
items: [
{
label: "Strategy",
href: "/services",
},
{
label: "Design",
href: "/services",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }] },
{ title: "Services", items: [{ label: "Strategy", href: "/services" }, { label: "Design", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>