Files
ca8779da-ae2b-4659-b2b7-935…/src/app/page.tsx
2026-04-09 06:40:25 +00:00

128 lines
6.9 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="compact"
sizing="largeSmallSizeLargeTitles"
background="blurBottom"
cardStyle="gradient-bordered"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Services", id: "services" },
{ name: "Results", id: "results" },
{ name: "Contact", id: "contact" },
]}
brandName="ConsultEdge"
button={{
text: "Schedule Discovery", href: "#contact"}}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{
variant: "radial-gradient"}}
title="Scale Your Business With Strategy"
description="We bridge the gap between your current performance and your market potential with proven consulting frameworks designed for rapid scaling."
tag="Trusted by 500+ Enterprises"
buttons={[
{ text: "Schedule Discovery", href: "#contact" },
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241202.jpg", imageAlt: "Professional workspace"},
{
imageSrc: "http://img.b2bpic.net/free-photo/business-growth-bar-chart-with-upward-trend_84443-86259.jpg", imageAlt: "Strategic planning"},
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Rated 5/5 by industry leaders"
/>
</div>
<div id="services" data-section="services">
<FeatureCardMedia
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{
id: "1", title: "Strategy Development", description: "Defining your path to market leadership with actionable roadmaps.", tag: "Core", imageSrc: "http://img.b2bpic.net/free-photo/business-growth-bar-chart-with-upward-trend_84443-86259.jpg"},
{
id: "2", title: "Operational Excellence", description: "Refining your internal processes to maximize team efficiency and ROI.", tag: "Process", imageSrc: "http://img.b2bpic.net/free-photo/multiethnic-team-employees-meeting-break-have-fun-discussing-about-business-collaboration-happy-people-laughing-planning-marketing-project-office-handheld-shot_482257-43330.jpg"},
{
id: "3", title: "Digital Transformation", description: "Modernizing your tech stack for a future-proof, scalable infrastructure.", tag: "Tech", imageSrc: "http://img.b2bpic.net/free-photo/globe-digital-grid-gradient-wallpaper_53876-104056.jpg"},
]}
title="Our Consulting Expertise"
description="Comprehensive solutions designed to tackle your biggest business challenges."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{
id: "1", name: "Jane Doe", handle: "CEO, TechCorp", testimonial: "Transformed our revenue in just 3 months. Invaluable.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-boss-sitting-with-newspaper-table_1098-3037.jpg"},
{
id: "2", name: "John Smith", handle: "CTO, DataSystems", testimonial: "The digital transformation strategy was a complete game changer.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20365.jpg"},
{
id: "3", name: "Sarah Lee", handle: "Director, GlobalInc", testimonial: "Insightful, actionable, and extremely efficient.", imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman_1098-14872.jpg"},
{
id: "4", name: "Mark Wilson", handle: "Founder, StartupXYZ", testimonial: "Strategic clarity provided the leverage we desperately needed.", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-smiling_107420-84736.jpg"},
{
id: "5", name: "Anna Brown", handle: "COO, FinanceGroup", testimonial: "Exceptional team to work with. Absolute gold standard.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-exhausted-workaholic-man-manager-typing-financial-strategy-using-laptop-computer-while-sitting-desk-table-business-company-office_482257-2321.jpg"},
]}
title="What Clients Say"
description="Proven results from industry partners."
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "radial-gradient"}}
text="Ready to scale your business to new heights? Let's discuss your vision today."
buttons={[
{
text: "Schedule Discovery", href: "#contact"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="ConsultEdge"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Schedule Discovery", href: "#contact"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}