205 lines
12 KiB
TypeScript
205 lines
12 KiB
TypeScript
"use client";
|
|
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
|
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-bubble"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="small"
|
|
sizing="largeSmall"
|
|
background="noiseDiagonalGradient"
|
|
cardStyle="soft-shadow"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Alberto Nue Bracamonte Consultor EIRL"
|
|
navItems={[
|
|
{ name: "Home", id: "#hero" },
|
|
{ name: "About", id: "#about" },
|
|
{ name: "Services", id: "#features" },
|
|
{ name: "Results", id: "#metrics" },
|
|
{ name: "Testimonials", id: "#testimonials" },
|
|
{ name: "Partners", id: "#social-proof" },
|
|
{ name: "FAQ", id: "#faq" },
|
|
{ name: "Contact", id: "#contact" }
|
|
]}
|
|
button={{ text: "Schedule Consultation", href: "#contact" }}
|
|
/>
|
|
</div>
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitDualMedia
|
|
title="Strategic Administration Exceptional Results"
|
|
description="Executive-level business consulting tailored to drive sustainable growth and operational excellence. Partner with Alberto Nue Bracamonte for proven strategies that transform organizations."
|
|
background={{ variant: "plain" }}
|
|
tag="Trusted Guidance"
|
|
buttons={[
|
|
{ text: "Schedule Consultation", href: "#contact" }
|
|
]}
|
|
buttonAnimation="blur-reveal"
|
|
mediaItems={[
|
|
{ imageSrc: "http://img.b2bpic.net/free-photo/business-strategy_53876-167052.jpg", imageAlt: "Professional business consultant in a modern office" },
|
|
{ imageSrc: "http://img.b2bpic.net/free-photo/line-graph-data-analysis-icon_53876-20801.jpg", imageAlt: "Business charts and data analysis" }
|
|
]}
|
|
mediaAnimation="blur-reveal"
|
|
rating={5}
|
|
ratingText="Highly Rated by Executive Clients"
|
|
tagAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
<div id="about" data-section="about">
|
|
<InlineImageSplitTextAbout
|
|
heading={[
|
|
{ type: "text", content: "About Alberto Nue Bracamonte: Your Strategic Partner" },
|
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/close-up-applicant-filling-application-form-files_482257-100545.jpg", alt: "elegant signature consultant name" }
|
|
]}
|
|
useInvertedBackground={true}
|
|
buttons={[
|
|
{ text: "Learn More", href: "#features" }
|
|
]}
|
|
buttonAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
<div id="features" data-section="features">
|
|
<FeatureCardNineteen
|
|
features={[
|
|
{
|
|
tag: "Strategic Planning", title: "Data-Driven Strategic Roadmaps", subtitle: "Crafting bespoke strategies based on deep market analysis.", description: "We develop comprehensive, actionable strategic plans that align with your long-term vision, ensuring sustainable growth and competitive advantage.", imageSrc: "http://img.b2bpic.net/free-photo/rise-shine-growth-success-achievement-progress-concept_53876-133719.jpg", imageAlt: "Business people discussing strategic planning"
|
|
},
|
|
{
|
|
tag: "Operational Excellence", title: "Optimizing Core Business Processes", subtitle: "Streamlining operations for peak efficiency and cost reduction.", description: "Identify and eliminate inefficiencies, implement best practices, and introduce innovative solutions to enhance productivity and operational agility.", imageSrc: "http://img.b2bpic.net/free-photo/progress-mission-move-forward-improvement-concept_53876-15867.jpg", imageAlt: "Diagram showing workflow optimization"
|
|
},
|
|
{
|
|
tag: "Growth & Scaling", title: "Unlocking New Market Opportunities", subtitle: "Guiding businesses through successful expansion and scaling initiatives.", description: "From market entry strategies to organizational restructuring for growth, we provide the expertise needed to scale your business effectively and profitably.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-office-travel-agency_23-2150433365.jpg", imageAlt: "Graphs showing business growth"
|
|
}
|
|
]}
|
|
title="Transforming Vision into Value"
|
|
description="Our bespoke consulting services are meticulously crafted to address your most critical business challenges and unlock new opportunities for growth."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardFourteen
|
|
title="Quantifiable Impact, Proven Success"
|
|
tag="Results Driven"
|
|
metrics={[
|
|
{ id: "m1", value: "25%+", description: "Average increase in operational efficiency for our clients." },
|
|
{ id: "m2", value: "$10M+", description: "Cumulative cost savings identified and implemented for clients." },
|
|
{ id: "m3", value: "95%", description: "Client satisfaction rate, reflecting our commitment to excellence." }
|
|
]}
|
|
metricsAnimation="blur-reveal"
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
testimonials={[
|
|
{ id: "t1", name: "Ricardo Flores", role: "CEO", company: "Global Innovate Corp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handshake-with-smiling-businessman_23-2147708181.jpg", imageAlt: "Ricardo Flores portrait" },
|
|
{ id: "t2", name: "Sofia Ramirez", role: "COO", company: "Nexus Solutions", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-sad-expression_1194-3905.jpg", imageAlt: "Sofia Ramirez portrait" },
|
|
{ id: "t3", name: "Javier Mendoza", role: "CFO", company: "Apex Financial Group", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/content-senior-businessman-writing-flipchart_1262-1789.jpg", imageAlt: "Javier Mendoza portrait" },
|
|
{ id: "t4", name: "Elena Torres", role: "Director of Strategy", company: "Quantum Tech", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1662.jpg", imageAlt: "Elena Torres portrait" },
|
|
{ id: "t5", name: "Carlos Sanchez", role: "Founder", company: "Zenith Ventures", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-thoughtful-middle-aged-business-man_1262-2985.jpg", imageAlt: "Carlos Sanchez portrait" }
|
|
]}
|
|
kpiItems={[
|
|
{ value: "98%", label: "Client Retention" },
|
|
{ value: "4.9/5", label: "Average Rating" },
|
|
{ value: "100+", label: "Successful Projects" }
|
|
]}
|
|
animationType="blur-reveal"
|
|
title="Trusted by Industry Leaders"
|
|
description="Hear directly from the executives who have partnered with Alberto Nue Bracamonte to achieve remarkable results and sustained success."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
names={[
|
|
"Global Solutions", "Innovate Partners", "Enterprise Growth", "Summit Consulting", "Horizon Ventures", "Dynamic Corp", "Stratagem Group"
|
|
]}
|
|
title="Partnerships Built on Trust"
|
|
description="Our expertise has been recognized and valued by a diverse portfolio of leading companies across various sectors."
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitMedia
|
|
faqs={[
|
|
{ id: "faq1", title: "What is your consulting approach?", content: "Our approach is highly personalized and data-driven. We begin with an in-depth analysis of your current operations and strategic goals, followed by crafting bespoke solutions and hands-on implementation support." },
|
|
{ id: "faq2", title: "How long does a typical engagement last?", content: "Engagement durations vary based on project complexity and client needs. We offer both short-term strategic advisory and long-term implementation partnerships, always aiming for efficient and impactful outcomes." },
|
|
{ id: "faq3", title: "What kind of results can I expect?", content: "Clients typically experience significant improvements in operational efficiency, measurable growth in key performance areas, enhanced strategic clarity, and a stronger competitive position." }
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/using-device-corporate-touchpad-network-multimedia_1421-248.jpg"
|
|
imageAlt="Business people brainstorming discussion"
|
|
mediaAnimation="blur-reveal"
|
|
mediaPosition="left"
|
|
title="Frequently Asked Questions"
|
|
description="Addressing common inquiries to provide clarity on our consulting approach and engagement process."
|
|
tag="Insights"
|
|
faqsAnimation="blur-reveal"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Next Steps"
|
|
title="Ready for Transformative Growth?"
|
|
description="Schedule a confidential consultation to explore how our strategic guidance can propel your business forward. We're committed to your success."
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={true}
|
|
inputPlaceholder="Your Email Address"
|
|
buttonText="Schedule Consultation"
|
|
termsText="By scheduling a consultation, you agree to our privacy policy and terms of service."
|
|
/>
|
|
</div>
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
logoText="Alberto Nue Bracamonte Consultor EIRL"
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Strategic Planning", href: "#features" },
|
|
{ label: "Operational Efficiency", href: "#features" },
|
|
{ label: "Growth & Scaling", href: "#features" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Testimonials", href: "#testimonials" },
|
|
{ label: "Contact", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Resources", items: [
|
|
{ label: "FAQ", href: "#faq" },
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
copyrightText="© 2024 Alberto Nue Bracamonte Consultor EIRL. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|