Merge version_2 into main #2
@@ -2,12 +2,11 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -22,122 +21,44 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="ENScaleWorks"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Let’s Grow Your Brand"
|
||||
description="Ready to scale your legacy? Start here."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "business",
|
||||
type: "text",
|
||||
placeholder: "Business Name",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "goal",
|
||||
placeholder: "Your Growth Goal",
|
||||
rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/graph-growth-success-improvement-development-business_53876-123895.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Growth Packages"
|
||||
description="Select the right path for your brand."
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Initial Strategy",
|
||||
price: "$1k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/charts-with-economy-development-desk_23-2148541972.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Scaling System",
|
||||
price: "$5k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/computer-dark-room-with-graphs-screen_169016-54998.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer-section" data-section="footer-section">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-quz0pn69.png?_wi=5"
|
||||
logoText="ENScaleWorks"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate",
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="ENScaleWorks"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactSplit
|
||||
tag="Get in Touch"
|
||||
title="Let's Scale Your Results"
|
||||
description="Email us at EDK.ScaleWorks@gmail.com, call 325-260-9437, or leave a message. Please reach out between 4PM and 7PM for the fastest response."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer-section" data-section="footer-section">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-quz0pn69.png?_wi=2"
|
||||
logoText="ENScaleWorks"
|
||||
columns={[
|
||||
{ title: "Navigate", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]},
|
||||
{ title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms", href: "#" }
|
||||
]}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
226
src/app/page.tsx
226
src/app/page.tsx
@@ -29,21 +29,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="ENScaleWorks"
|
||||
/>
|
||||
@@ -52,105 +44,61 @@ export default function LandingPage() {
|
||||
<div id="hero-section" data-section="hero-section">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Scale Your Brand With Strategy That Actually Works"
|
||||
description="We help businesses grow, convert, and scale with proven systems and clear strategy. Built on faith. Driven by results."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Client A",
|
||||
handle: "@business",
|
||||
testimonial: "Transformed our growth trajectory in months.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-e5tqounw.png?_wi=1",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
name: "Client A", handle: "@business", testimonial: "Transformed our growth trajectory in months.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-e5tqounw.png?_wi=1", imageAlt: "User provided image"},
|
||||
{
|
||||
name: "Client B",
|
||||
handle: "@brand",
|
||||
testimonial: "Professional, data-driven, and truly impactful results.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-quz0pn69.png?_wi=1",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
name: "Client B", handle: "@brand", testimonial: "Professional, data-driven, and truly impactful results.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-quz0pn69.png?_wi=1", imageAlt: "User provided image"},
|
||||
{
|
||||
name: "Client C",
|
||||
handle: "@startup",
|
||||
testimonial: "Exceptional strategy and scaling capabilities.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-having-business-meeting_53876-20876.jpg?_wi=1",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
name: "Client C", handle: "@startup", testimonial: "Exceptional strategy and scaling capabilities.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-having-business-meeting_53876-20876.jpg?_wi=1", imageAlt: "User provided image"},
|
||||
{
|
||||
name: "Client D",
|
||||
handle: "@agency",
|
||||
testimonial: "Honest, capable, and results-focused partners.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-smiling_1187-3402.jpg?_wi=1",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
name: "Client D", handle: "@agency", testimonial: "Honest, capable, and results-focused partners.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-smiling_1187-3402.jpg?_wi=1", imageAlt: "User provided image"},
|
||||
{
|
||||
name: "Client E",
|
||||
handle: "@company",
|
||||
testimonial: "The best investment we've made in growth.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-still-life-graphics-composition_23-2148991209.jpg?_wi=1",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
name: "Client E", handle: "@company", testimonial: "The best investment we've made in growth.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-still-life-graphics-composition_23-2148991209.jpg?_wi=1", imageAlt: "User provided image"},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Call",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Book a Call", href: "/contact"},
|
||||
{
|
||||
text: "Message", href: "mailto:EDK.ScaleWorks@gmail.com"}
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-e5tqounw.png?_wi=2"
|
||||
imageClassName="object-contain"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097921.jpg",
|
||||
alt: "Client profile A",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097921.jpg", alt: "Client profile A"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/executive-assistance-business-collaboration-helping-concept_53876-21399.jpg",
|
||||
alt: "Client profile B",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/executive-assistance-business-collaboration-helping-concept_53876-21399.jpg", alt: "Client profile B"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-business-man-standing-office_1303-22654.jpg",
|
||||
alt: "Client profile C",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-business-man-standing-office_1303-22654.jpg", alt: "Client profile C"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-working-as-team-company_23-2149136890.jpg",
|
||||
alt: "Client profile D",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/people-working-as-team-company_23-2149136890.jpg", alt: "Client profile D"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-man-posing-outdoor_23-2148883562.jpg",
|
||||
alt: "Client profile E",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-man-posing-outdoor_23-2148883562.jpg", alt: "Client profile E"},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Strategic Growth",
|
||||
},
|
||||
type: "text", text: "Strategic Growth"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Market Dominance",
|
||||
},
|
||||
type: "text", text: "Market Dominance"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Conversion Optimization",
|
||||
},
|
||||
type: "text", text: "Conversion Optimization"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Systemized Scaling",
|
||||
},
|
||||
type: "text", text: "Systemized Scaling"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Operational Excellence",
|
||||
},
|
||||
type: "text", text: "Operational Excellence"},
|
||||
]}
|
||||
/>
|
||||
<p className="text-sm text-center mt-2 opacity-80">Calling hours: 4 PM - 7 PM</p>
|
||||
</div>
|
||||
|
||||
<div id="features-list" data-section="features-list">
|
||||
@@ -159,20 +107,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Brand Strategy",
|
||||
description: "Defining your identity for market dominance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-having-business-meeting_53876-20876.jpg?_wi=2",
|
||||
},
|
||||
title: "Brand Strategy", description: "Defining your identity for market dominance.", imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-people-having-business-meeting_53876-20876.jpg?_wi=2"},
|
||||
{
|
||||
title: "Growth Systems",
|
||||
description: "Optimized operations for repeatable success.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-still-life-graphics-composition_23-2148991209.jpg?_wi=2",
|
||||
},
|
||||
title: "Growth Systems", description: "Optimized operations for repeatable success.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-still-life-graphics-composition_23-2148991209.jpg?_wi=2"},
|
||||
{
|
||||
title: "Lead Optimization",
|
||||
description: "High-conversion funnels that drive revenue.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/analysis-data-information-insight-plan-process-concept_53876-121051.jpg",
|
||||
},
|
||||
title: "Lead Optimization", description: "High-conversion funnels that drive revenue.", imageSrc: "http://img.b2bpic.net/free-photo/analysis-data-information-insight-plan-process-concept_53876-121051.jpg"},
|
||||
]}
|
||||
title="What We Do"
|
||||
description="Comprehensive strategy systems tailored for impact."
|
||||
@@ -186,26 +125,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10x",
|
||||
title: "Growth Efficiency",
|
||||
description: "Systematized scaling impact.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-trading-browsing-online-stock-investments-night_169016-58033.jpg",
|
||||
},
|
||||
id: "m1", value: "10x", title: "Growth Efficiency", description: "Systematized scaling impact.", imageSrc: "http://img.b2bpic.net/free-photo/man-trading-browsing-online-stock-investments-night_169016-58033.jpg"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "400%",
|
||||
title: "Conversion Rate",
|
||||
description: "Optimized funnel output.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/balance-funds-financial-graph-interface-concept_53876-21157.jpg",
|
||||
},
|
||||
id: "m2", value: "400%", title: "Conversion Rate", description: "Optimized funnel output.", imageSrc: "http://img.b2bpic.net/free-photo/balance-funds-financial-graph-interface-concept_53876-21157.jpg"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50+",
|
||||
title: "Brands Scaled",
|
||||
description: "Partnership track record.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-talking-colleagues-video-call-communication-using-smartphone-business-meeting-businessman-holding-mobile-phone-online-conference-with-workmates-corporate-office_482257-28475.jpg",
|
||||
},
|
||||
id: "m3", value: "50+", title: "Brands Scaled", description: "Partnership track record.", imageSrc: "http://img.b2bpic.net/free-photo/person-talking-colleagues-video-call-communication-using-smartphone-business-meeting-businessman-holding-mobile-phone-online-conference-with-workmates-corporate-office_482257-28475.jpg"},
|
||||
]}
|
||||
title="Built on Faith. Driven by Results."
|
||||
description="Quantifiable growth and real world impact."
|
||||
@@ -220,30 +144,15 @@ export default function LandingPage() {
|
||||
cardAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "CEO Tech",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-manager-working-with-report-data_1262-3723.jpg",
|
||||
},
|
||||
id: "t1", name: "CEO Tech", imageSrc: "http://img.b2bpic.net/free-photo/close-up-manager-working-with-report-data_1262-3723.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Founder Startup",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-cozy-office-with-laptop-desk_23-2149636248.jpg",
|
||||
},
|
||||
id: "t2", name: "Founder Startup", imageSrc: "http://img.b2bpic.net/free-photo/elegant-cozy-office-with-laptop-desk_23-2149636248.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Director Retail",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/devices-water-cooler-empty-office_482257-119279.jpg",
|
||||
},
|
||||
id: "t3", name: "Director Retail", imageSrc: "http://img.b2bpic.net/free-photo/devices-water-cooler-empty-office_482257-119279.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Marketing Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/multiethnic-group-coworkers-analyzing-business-charts-infographics-data-laptop-software-people-doing-teamwork-collaboration-create-paper-reviews-professional-report-close-up_482257-48646.jpg",
|
||||
},
|
||||
id: "t4", name: "Marketing Lead", imageSrc: "http://img.b2bpic.net/free-photo/multiethnic-group-coworkers-analyzing-business-charts-infographics-data-laptop-software-people-doing-teamwork-collaboration-create-paper-reviews-professional-report-close-up_482257-48646.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Brand Expert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-queer-model-working-office_23-2150325314.jpg",
|
||||
},
|
||||
id: "t5", name: "Brand Expert", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-queer-model-working-office_23-2150325314.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -257,30 +166,15 @@ export default function LandingPage() {
|
||||
memberVariant="card"
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Director Growth",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16175.jpg",
|
||||
},
|
||||
id: "m1", name: "Director Growth", imageSrc: "http://img.b2bpic.net/free-photo/young-team-coworkers-working-project_273609-16175.jpg"},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Head of Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-women-entrepreneurs-working-together-office_93675-134471.jpg",
|
||||
},
|
||||
id: "m2", name: "Head of Strategy", imageSrc: "http://img.b2bpic.net/free-photo/two-women-entrepreneurs-working-together-office_93675-134471.jpg"},
|
||||
{
|
||||
id: "m3",
|
||||
name: "Brand Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-speaking-with-diverse-group-office_482257-121153.jpg",
|
||||
},
|
||||
id: "m3", name: "Brand Manager", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-speaking-with-diverse-group-office_482257-121153.jpg"},
|
||||
{
|
||||
id: "m4",
|
||||
name: "Operations Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-back-office_23-2149097923.jpg",
|
||||
},
|
||||
id: "m4", name: "Operations Lead", imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-back-office_23-2149097923.jpg"},
|
||||
{
|
||||
id: "m5",
|
||||
name: "Partner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-working-elegant-cozy-office-space_23-2149548797.jpg",
|
||||
},
|
||||
id: "m5", name: "Partner", imageSrc: "http://img.b2bpic.net/free-photo/people-working-elegant-cozy-office-space_23-2149548797.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -291,33 +185,21 @@ export default function LandingPage() {
|
||||
logoText="ENScaleWorks"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate",
|
||||
items: [
|
||||
title: "Navigate", items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -326,4 +208,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,12 +2,11 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -22,127 +21,56 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="ENScaleWorks"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="ENScaleWorks"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-body" data-section="services-body">
|
||||
<FeatureCardEight
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Brand Strategy",
|
||||
description: "Holistic market positioning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-coworkers-analyzing-business-charts-graphs-laptop-digital-tablet-using-networking-software-plan-presentation-with-diagrams-people-working-with-research-close-up_482257-47589.jpg",
|
||||
},
|
||||
{
|
||||
title: "Lead Generation",
|
||||
description: "Automated pipelines.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/computer-dark-room-with-graphs-screen_169016-57447.jpg",
|
||||
},
|
||||
{
|
||||
title: "Scaling Systems",
|
||||
description: "Operational excellence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/market-trends-concept-with-laptop_23-2150372444.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Scaling Services"
|
||||
description="Precision strategies to grow your legacy."
|
||||
/>
|
||||
</div>
|
||||
<div id="features-list" data-section="features-list">
|
||||
<FeatureCardEight
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Our Services"
|
||||
description="Clear, results-oriented solutions designed to scale your business effectively."
|
||||
features={[
|
||||
{
|
||||
title: "One-Time Website Creation", description: "Professional, high-converting websites custom-built for your brand. Pricing ranges from $500 to $1000 per site, depending on complexity and specific requirements."},
|
||||
{
|
||||
title: "Social Media Ad Management", description: "Comprehensive ad management across Facebook, Instagram, Pinterest, and TikTok. Service includes strategy, setup, and optimization for $300/month plus 10% of profit generated. We waive the $300 management fee for the first two months so you can see the results first."}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Insights on Scaling"
|
||||
description="Articles on growth strategy."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Growth",
|
||||
title: "Scale with Systems",
|
||||
excerpt: "Scaling without chaos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/trading-stock-stock-market-business-graph-trading-investment-broker-stock-exchange-market_169016-66719.jpg",
|
||||
authorName: "A. Lead",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097921.jpg",
|
||||
date: "2025",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Strategy",
|
||||
title: "Brand Authority",
|
||||
excerpt: "Building market dominance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/trading-stock-stock-market-business-graph-trading-investment-broker-stock-exchange-market_169016-66470.jpg",
|
||||
authorName: "B. Lead",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/executive-assistance-business-collaboration-helping-concept_53876-21399.jpg",
|
||||
date: "2025",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer-section" data-section="footer-section">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-quz0pn69.png?_wi=3"
|
||||
logoText="ENScaleWorks"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate",
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer-section" data-section="footer-section">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CvHjsoO4dbUKJ1DnMvt36RQqY0/uploaded-1777259323440-quz0pn69.png?_wi=2"
|
||||
logoText="ENScaleWorks"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user