Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 33358f7676 | |||
| 40852cedb6 | |||
| d651019f20 | |||
| dd52490bad | |||
| 6f2bf392d7 | |||
| b29de2b59b | |||
| 20da18e89e | |||
| adfee5d7f0 | |||
| dac6318729 |
238
src/app/page.tsx
238
src/app/page.tsx
@@ -3,15 +3,15 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import { Award, Linkedin, TrendingUp, Twitter, Users } from "lucide-react";
|
import { Award, TrendingUp, Users } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -31,24 +31,14 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "home" },
|
||||||
name: "Home",
|
{ name: "About", id: "about" },
|
||||||
id: "home",
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
},
|
{ name: "FAQ", id: "faq" },
|
||||||
{
|
{ name: "Contact", id: "contact" },
|
||||||
name: "About",
|
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Services",
|
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="BusinessPro"
|
brandName="BusinessPro"
|
||||||
|
button={{ text: "Get Started", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -56,37 +46,9 @@ export default function LandingPage() {
|
|||||||
<HeroOverlay
|
<HeroOverlay
|
||||||
title="Elevating Your Business Vision"
|
title="Elevating Your Business Vision"
|
||||||
description="We provide innovative strategies and high-quality solutions to help your business scale efficiently in the modern marketplace."
|
description="We provide innovative strategies and high-quality solutions to help your business scale efficiently in the modern marketplace."
|
||||||
buttons={[
|
buttons={[{ text: "Get Started", href: "#contact" }]}
|
||||||
{
|
|
||||||
text: "Get Started",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/angry-female-ceo-yelling-her-executive-assistants-due-business-failure_482257-120044.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/angry-female-ceo-yelling-her-executive-assistants-due-business-failure_482257-120044.jpg"
|
||||||
showBlur={true}
|
showBlur={true}
|
||||||
avatars={[
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-blonde-confident-young-businesswoman-against-gray-background_23-2148029500.jpg",
|
|
||||||
alt: "Client 1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg",
|
|
||||||
alt: "Client 2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg",
|
|
||||||
alt: "Client 3",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-14128.jpg",
|
|
||||||
alt: "Client 4",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg",
|
|
||||||
alt: "Client 5",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
avatarText="Trusted by 500+ professionals"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -95,21 +57,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Impact Driven Growth"
|
title="Impact Driven Growth"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ icon: Users, label: "Clients Served", value: "500+" },
|
||||||
icon: Users,
|
{ icon: TrendingUp, label: "Growth Rate", value: "150%" },
|
||||||
label: "Clients Served",
|
{ icon: Award, label: "Awards Won", value: "25+" },
|
||||||
value: "500+",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: TrendingUp,
|
|
||||||
label: "Growth Rate",
|
|
||||||
value: "150%",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Award,
|
|
||||||
label: "Awards Won",
|
|
||||||
value: "25+",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -121,21 +71,9 @@ export default function LandingPage() {
|
|||||||
title="Comprehensive Business Services"
|
title="Comprehensive Business Services"
|
||||||
description="Explore our core services tailored for modern business growth and optimization."
|
description="Explore our core services tailored for modern business growth and optimization."
|
||||||
accordionItems={[
|
accordionItems={[
|
||||||
{
|
{ id: "f1", title: "Strategic Consulting", content: "Tailored roadmaps for sustainable growth." },
|
||||||
id: "f1",
|
{ id: "f2", title: "Digital Transformation", content: "Modernizing legacy systems with latest tech." },
|
||||||
title: "Strategic Consulting",
|
{ id: "f3", title: "Brand Development", content: "Creating identities that resonate globally." },
|
||||||
content: "Tailored roadmaps for sustainable growth.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f2",
|
|
||||||
title: "Digital Transformation",
|
|
||||||
content: "Modernizing legacy systems with latest tech.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f3",
|
|
||||||
title: "Brand Development",
|
|
||||||
content: "Creating identities that resonate globally.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-leaders-business-meeting-brainstorming-growth-strategy_482257-124049.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-leaders-business-meeting-brainstorming-growth-strategy_482257-124049.jpg"
|
||||||
@@ -149,42 +87,9 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "p1", name: "Starter Toolkit", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-office-desk-arrangement_23-2148707946.jpg" },
|
||||||
id: "p1",
|
{ id: "p2", name: "Analytics Pro", price: "$499", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-carpenter-showing-digital-tablet-his-hand_23-2147945078.jpg" },
|
||||||
name: "Starter Toolkit",
|
{ id: "p3", name: "SaaS Platform", price: "$899", imageSrc: "http://img.b2bpic.net/free-photo/staistics-business-strategy-planning-research-digital-tablet-concept_53876-26413.jpg" },
|
||||||
price: "$199",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-office-desk-arrangement_23-2148707946.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
name: "Analytics Pro",
|
|
||||||
price: "$499",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-carpenter-showing-digital-tablet-his-hand_23-2147945078.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
name: "SaaS Platform",
|
|
||||||
price: "$899",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/staistics-business-strategy-planning-research-digital-tablet-concept_53876-26413.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p4",
|
|
||||||
name: "Growth Suite",
|
|
||||||
price: "$299",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/glossy-gradient-facebook-logo_23-2152009926.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p5",
|
|
||||||
name: "Efficiency Pack",
|
|
||||||
price: "$399",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-business-desk-arrangement_23-2148128260.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p6",
|
|
||||||
name: "Ultimate Hub",
|
|
||||||
price: "$999",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/abstract-modern-business-card_1017-8642.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Strategic Toolkits"
|
title="Strategic Toolkits"
|
||||||
description="Premium resources and tools to jumpstart your business operations."
|
description="Premium resources and tools to jumpstart your business operations."
|
||||||
@@ -192,96 +97,51 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardThirteen
|
||||||
|
title="Customer Success Stories"
|
||||||
|
description="What our partners say about working with us."
|
||||||
|
showRating={true}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonial="The service provided was exceptional. Our growth metrics have doubled in six months thanks to their strategic guidance."
|
animationType="slide-up"
|
||||||
rating={5}
|
textboxLayout="default"
|
||||||
author="Sarah Miller"
|
testimonials={[
|
||||||
avatars={[
|
{ id: "t1", name: "Sarah Miller", handle: "@smiller", testimonial: "Exceptional service that doubled our growth in six months.", rating: 5 },
|
||||||
{
|
{ id: "t2", name: "John Davis", handle: "@jdavis", testimonial: "The strategic guidance provided was transformative for our firm.", rating: 5 },
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg",
|
{ id: "t3", name: "Amira Khalid", handle: "@akhalid", testimonial: "Professionalism and efficiency at every step of the project.", rating: 5 },
|
||||||
alt: "Client 1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/pensive-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19917.jpg",
|
|
||||||
alt: "Client 2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/smiley-tattoo-artist-indoors-side-view_23-2149445974.jpg",
|
|
||||||
alt: "Client 3",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-confident-male-employee-white-collar-shirt-smiling-camera-standing-self-assured-against-studio-background_1258-26761.jpg",
|
|
||||||
alt: "Client 4",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
|
||||||
alt: "Client 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitText
|
<FaqBase
|
||||||
useInvertedBackground={false}
|
title="Installment Questions"
|
||||||
faqs={[
|
description="Everything you need to know about our payment plans."
|
||||||
{
|
|
||||||
id: "q1",
|
|
||||||
title: "Do you offer consultations?",
|
|
||||||
content: "Yes, we offer complimentary initial discovery calls.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q2",
|
|
||||||
title: "What industries do you serve?",
|
|
||||||
content: "We support a wide array of sectors from tech to retail.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q3",
|
|
||||||
title: "How do we get started?",
|
|
||||||
content: "Simply fill out our contact form and our team will follow up.",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
sideTitle="Common Inquiries"
|
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
textboxLayout="split"
|
||||||
|
faqs={[
|
||||||
|
{ id: "q1", title: "What installment plans do you offer?", content: "We offer flexible monthly and quarterly payment plans for our consulting packages." },
|
||||||
|
{ id: "q2", title: "Is there interest on installments?", content: "Our installment plans are 0% interest for all business contracts signed before the end of the year." },
|
||||||
|
{ id: "q3", title: "Can I pay early?", content: "Yes, you can settle your installment plan balance at any time without penalties." },
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactText
|
||||||
|
text="Our office in Saudi Arabia is ready to assist you. Contact us for local inquiries."
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain",
|
|
||||||
}}
|
|
||||||
tag="Get in touch"
|
|
||||||
title="Ready to transform your business?"
|
|
||||||
description="Let's build something great together. Our experts are standing by."
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Contact Us",
|
|
||||||
href: "mailto:hello@business.com",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterCard
|
<FooterBase
|
||||||
logoText="BusinessPro"
|
logoText="BusinessPro"
|
||||||
copyrightText="© 2025 BusinessPro. All rights reserved."
|
copyrightText="© 2025 BusinessPro Saudi Arabia. All rights reserved."
|
||||||
socialLinks={[
|
columns={[
|
||||||
{
|
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] },
|
||||||
icon: Twitter,
|
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
href: "https://twitter.com",
|
|
||||||
ariaLabel: "Twitter",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Linkedin,
|
|
||||||
href: "https://linkedin.com",
|
|
||||||
ariaLabel: "LinkedIn",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -10,14 +10,14 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #ffffff;
|
||||||
--card: #ffffff;
|
--card: #f9f9f9;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #1c1c1c;
|
||||||
--primary-cta: #1c1c1c;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #e2e2e2;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #15479c;
|
--accent: #0a7039;
|
||||||
--background-accent: #a8cce8;
|
--background-accent: #a8cce8;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
|
|||||||
Reference in New Issue
Block a user