11 Commits

Author SHA1 Message Date
8fc1fb2481 Update src/app/styles/base.css 2026-03-03 13:46:09 +00:00
f16325e408 Update src/app/layout.tsx 2026-03-03 13:46:09 +00:00
c651a384ca Merge version_2 into main
Merge version_2 into main
2026-03-03 13:32:24 +00:00
13d531ac10 Update src/app/styles/variables.css 2026-03-03 13:32:19 +00:00
3c43421e58 Update src/app/styles/base.css 2026-03-03 13:32:18 +00:00
d463dc703d Update src/app/page.tsx 2026-03-03 13:32:18 +00:00
f9b2c20b88 Update src/app/layout.tsx 2026-03-03 13:32:17 +00:00
9236b25ae5 Merge version_1 into main
Merge version_1 into main
2026-03-03 13:23:50 +00:00
eb2d9dc9cc Merge version_1 into main
Merge version_1 into main
2026-03-03 13:22:39 +00:00
5f411d02c5 Merge version_1 into main
Merge version_1 into main
2026-03-03 13:20:54 +00:00
b6b3106bc5 Merge version_1 into main
Merge version_1 into main
2026-03-03 13:19:12 +00:00
4 changed files with 106 additions and 110 deletions

View File

@@ -1,33 +1,29 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Nunito_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google"; import { Manrope } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({ const dmSans = DM_Sans({
variable: "--font-nunito-sans", subsets: ["latin"], variable: "--font-dm-sans", subsets: ["latin"],
}); });
const halant = Halant({ const manrope = Manrope({
variable: "--font-halant", subsets: ["latin"], variable: "--font-manrope", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Businessplan & Finanzberatung | Individuelle Planung", description: "Professionelle Businesspläne mit Schwerpunkt auf individueller Finanzplanung. Von der ersten Beratung bis zur Finalisierung maßgeschneiderte Lösungen für Ihre Geschäftsidee.", keywords: "Businessplan, Finanzplanung, Finanzberatung, Unternehmensberatung, Geschäftsplan, Excel Templates", robots: { title: "Professional Business Consulting | Enterprise Solutions", description: "Enterprise-grade business consulting and strategic planning services. Professional solutions for complex business challenges, comparable to leading consulting firms.", keywords: "business consulting, strategic planning, enterprise solutions, management consulting, business strategy", robots: {
index: true, index: true,
follow: true, follow: true,
}, },
openGraph: { openGraph: {
title: "Businessplan & Finanzberatung", description: "Professionelle Businesspläne mit individueller Finanzplanung", type: "website", siteName: "Businessplan & Finanzberatung"}, title: "Professional Business Consulting", description: "Enterprise-grade business consulting and strategic planning services", type: "website", siteName: "Business Consulting"
},
twitter: { twitter: {
card: "summary_large_image", title: "Businessplan & Finanzberatung", description: "Professionelle Businesspläne mit individueller Finanzplanung"}, card: "summary_large_image", title: "Professional Business Consulting", description: "Enterprise-grade business consulting and strategic planning services"
},
}; };
export default function RootLayout({ export default function RootLayout({
@@ -39,7 +35,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`} className={`${dmSans.variable} ${manrope.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -10,131 +10,131 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Briefcase, ArrowRight, Phone, BarChart3, TrendingUp, CheckCircle, Star } from 'lucide-react'; import { Briefcase, ArrowRight, Users, TrendingUp, Award, CheckCircle, Star } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-magnetic" defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="rounded" borderRadius="soft"
contentWidth="compact" contentWidth="mediumLarge"
sizing="mediumLarge" sizing="largeSizeMediumTitles"
background="circleGradient" background="none"
cardStyle="gradient-radial" cardStyle="glass-depth"
primaryButtonStyle="shadow" primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="glass"
headingFontWeight="normal" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "Über mich", id: "about" }, { name: "About", id: "about" },
{ name: "Leistungen", id: "services" }, { name: "Services", id: "services" },
{ name: "Prozess", id: "process" }, { name: "Expertise", id: "process" },
{ name: "Kontakt", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
brandName="Businessplan & Finanzberatung" brandName="Strategic Business Consulting"
bottomLeftText="Individuelle Finanzplanung" bottomLeftText="Enterprise Solutions"
bottomRightText="info@businessplan-konsult.de" bottomRightText="hello@consulting.pro"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel <HeroBillboardRotatedCarousel
title="Professionelle Businesspläne mit individueller Finanzplanung" title="Enterprise-Class Business Consulting"
description="Ich erstelle maßgeschneiderte Businesspläne mit Schwerpunkt auf fundierter Finanzplanung. Von der ersten Beratung bis zur finalen Umsetzung professionelle Begleitung für Ihre Geschäftsidee." description="Strategic solutions for complex business challenges. We deliver measurable results through rigorous analysis, proven methodologies, and deep industry expertise—comparable to top-tier consulting firms."
tag="Businessplanung" tag="Professional Consulting"
tagIcon={Briefcase} tagIcon={Briefcase}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Jetzt Beratung buchen", href: "#contact" }, { text: "Schedule Consultation", href: "#contact" },
{ text: "Mehr erfahren", href: "#services" } { text: "View Case Studies", href: "#testimonials" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "plain" }} background={{ variant: "downward-rays-static-grid" }}
carouselItems={[ carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/teamwork-scene-close-up_23-2147626393.jpg?_wi=1", imageAlt: "businessplan financial planning consulting business strategy" }, { id: "1", imageSrc: "http://img.b2bpic.net/free-photo/teamwork-scene-close-up_23-2147626393.jpg?_wi=1", imageAlt: "strategic business consultation professional team" },
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-using-analytics-reports-papers-review-progress_482257-122889.jpg?_wi=1", imageAlt: "initial consultation meeting business discussion planning" }, { id: "2", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-using-analytics-reports-papers-review-progress_482257-122889.jpg?_wi=1", imageAlt: "data analysis financial reporting business metrics" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/business-team-present-investor-working-new-startup-project-finance-meeting_1421-96.jpg?_wi=1", imageAlt: "financial analysis data review spreadsheet consulting" }, { id: "3", imageSrc: "http://img.b2bpic.net/free-photo/business-team-present-investor-working-new-startup-project-finance-meeting_1421-96.jpg?_wi=1", imageAlt: "executive presentation strategic planning stakeholder meeting" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-business-man-busy-office-desk-notebook-documents-working_1150-15424.jpg", imageAlt: "business plan document finalization presentation" }, { id: "4", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-business-man-busy-office-desk-notebook-documents-working_1150-15424.jpg", imageAlt: "strategic document preparation consulting analysis" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-vector/progress-report-template-design_742173-16561.jpg?_wi=1", imageAlt: "excel template spreadsheet business operations data" }, { id: "5", imageSrc: "http://img.b2bpic.net/free-vector/progress-report-template-design_742173-16561.jpg?_wi=1", imageAlt: "performance metrics dashboard business intelligence" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg?_wi=1", imageAlt: "professional consultant business owner portrait corporate" } { id: "6", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg?_wi=1", imageAlt: "professional consultant executive business leader" }
]} ]}
autoPlay={true} autoPlay={true}
autoPlayInterval={5000} autoPlayInterval={5000}
ariaLabel="Hero section with business planning showcase" ariaLabel="Hero section with enterprise consulting showcase"
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<TextSplitAbout <TextSplitAbout
title="Über mich" title="Delivering Enterprise-Grade Expertise"
description={[ description={[
"Mit mehreren Jahren Erfahrung in der Businessplanung und Finanzberatung helfe ich Unternehmern, ihre Geschäftsideen in solide, nachhaltige Geschäftsmodelle umzuwandeln.", "Mein Fokus liegt auf der Erstellung individueller Businesspläne mit besonderem Schwerpunkt auf realistischer und detaillierter Finanzplanung. Ich verstehe die Herausforderungen, denen sich Gründer und Selbstständige gegenübersehen.", "Mein Ziel ist es, Ihnen nicht nur einen Businessplan zu erstellen, sondern Ihnen ein fundiertes Verständnis für die finanzielle Seite Ihres Unternehmens zu vermitteln damit Sie mit Zuversicht durchstarten können." "We bring decades of collective experience in strategic business consulting, operating at the caliber of top-tier firms. Our team combines deep industry knowledge with a rigorous, methodical approach to problem-solving.", "We specialize in complex organizational challenges: digital transformation, operational excellence, market strategy, and organizational restructuring. Every engagement is backed by comprehensive research and proven frameworks.", "Our commitment: deliver actionable insights and sustainable results. We work as an extension of your leadership team, bringing objectivity and expertise to your most critical business decisions."
]} ]}
buttons={[ buttons={[
{ text: "Kontakt aufnehmen" } { text: "Get In Touch" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
showBorder={true} showBorder={false}
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="About section - professional background" ariaLabel="About section - enterprise consulting expertise"
/> />
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardTwentySix <FeatureCardTwentySix
title="Meine Leistungen" title="Core Consulting Services"
description="Comprehensive business planning and financial consulting services tailored to your needs." description="End-to-end strategic solutions for enterprise challenges, delivered by seasoned consultants using proven methodologies."
features={[ features={[
{ {
title: "Vollständige Businesspläne", description: "Professionelle Businesspläne mit Executive Summary, Marktanalyse, Finanzprognosen und Risikobewertung alles, was Sie für Kreditgespräche oder Investorengewinnung benötigen.", imageSrc: "http://img.b2bpic.net/free-photo/teamwork-scene-close-up_23-2147626393.jpg?_wi=2", imageAlt: "Businessplan Erstellung", buttonIcon: ArrowRight, title: "Strategic Planning & Business Transformation", description: "Comprehensive strategy development, competitive analysis, and organizational transformation. We help define clear strategic direction and execute complex multi-year initiatives with measurable outcomes.", imageSrc: "http://img.b2bpic.net/free-photo/teamwork-scene-close-up_23-2147626393.jpg?_wi=2", imageAlt: "Strategic planning and transformation", buttonIcon: ArrowRight,
buttonHref: "#contact" buttonHref: "#contact"
}, },
{ {
title: "Individuelle Finanzplanung", description: "Detaillierte Finanzanalyse und Prognosenentwicklung. Ich erstelle realistische Szenarien für Gewinn- und Verlust, Cashflow und Break-Even-Analysen.", imageSrc: "http://img.b2bpic.net/free-photo/business-team-present-investor-working-new-startup-project-finance-meeting_1421-96.jpg?_wi=2", imageAlt: "Finanzplanung und Analyse", buttonIcon: ArrowRight, title: "Operations & Process Excellence", description: "End-to-end operational optimization, process redesign, and performance improvement. We identify inefficiencies and implement sustainable systems that drive productivity and reduce costs.", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-using-analytics-reports-papers-review-progress_482257-122889.jpg?_wi=2", imageAlt: "Operations optimization and process improvement", buttonIcon: ArrowRight,
buttonHref: "#contact" buttonHref: "#contact"
}, },
{ {
title: "Beratung & Strategie", description: "Persönliche Beratung zur Geschäftsstrategie, Marktpositionierung und operativen Planung. Ich unterstütze Sie bei der Entwicklung eines soliden Geschäftsmodells.", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-using-analytics-reports-papers-review-progress_482257-122889.jpg?_wi=2", imageAlt: "Strategieberatung", buttonIcon: ArrowRight, title: "Organizational & Change Management", description: "Structure optimization, leadership development, and change management expertise. We guide organizations through complex transitions while maintaining stakeholder alignment and operational continuity.", imageSrc: "http://img.b2bpic.net/free-photo/business-team-present-investor-working-new-startup-project-finance-meeting_1421-96.jpg?_wi=2", imageAlt: "Organizational change and leadership", buttonIcon: ArrowRight,
buttonHref: "#contact" buttonHref: "#contact"
}, },
{ {
title: "Excel-Templates für Operativen Betrieb", description: "Individuelle Excel-Templates für die tägliche Verwaltung Ihres Betriebs. Von Budgettracking bis zu Leistungskennzahlen maßgeschneiderte Lösungen für Ihre spezifischen Anforderungen.", imageSrc: "http://img.b2bpic.net/free-vector/progress-report-template-design_742173-16561.jpg?_wi=2", imageAlt: "Excel Template Erstellung", buttonIcon: ArrowRight, title: "Financial & Performance Analytics", description: "Advanced financial modeling, performance dashboards, and business intelligence. We transform data into strategic insights that inform better decision-making across the organization.", imageSrc: "http://img.b2bpic.net/free-vector/progress-report-template-design_742173-16561.jpg?_wi=2", imageAlt: "Financial analytics and performance metrics", buttonIcon: ArrowRight,
buttonHref: "#contact" buttonHref: "#contact"
} }
]} ]}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttonAnimation="slide-up" buttonAnimation="slide-up"
ariaLabel="Services and features section" ariaLabel="Services and consulting expertise section"
/> />
</div> </div>
<div id="process" data-section="process"> <div id="process" data-section="process">
<MetricCardOne <MetricCardOne
title="Der Ablauf: Von der Idee zur Finalisierung" title="Our Proven Consulting Methodology"
description="Mein bewährter Prozess führt Sie strukturiert durch alle Phasen der Businessplanentwicklung." description="A disciplined, results-oriented approach developed through hundreds of successful engagements with enterprise clients."
metrics={[ metrics={[
{ {
id: "1", value: "1", title: "Erstkontakt & Analyse", description: "Wir besprechen Ihre Geschäftsidee, Ihre Ziele und Ihre spezifischen Anforderungen. Ich analysiere Ihr Geschäftsmodell und stelle erste Fragen.", icon: Phone id: "1", value: "Assess", title: "Deep Diagnostic Analysis", description: "We conduct rigorous assessment of current state, competitive positioning, organizational capabilities, and market dynamics. Stakeholder interviews and data analysis inform our baseline understanding.", icon: Users
}, },
{ {
id: "2", value: "2", title: "Marktforschung & Strategie", description: "Ich führe eine Marktanalyse durch, recherchiere Ihre Konkurrenz und entwickle eine solide Geschäftsstrategie basierend auf realistischen Annahmen.", icon: BarChart3 id: "2", value: "Design", title: "Strategic Framework Development", description: "Based on industry best practices and your specific context, we design comprehensive strategies with clear objectives, roadmaps, and success metrics.", icon: Award
}, },
{ {
id: "3", value: "3", title: "Finanzplanung & Modellierung", description: "Erstellung detaillierter Finanzprognosen einschließlich Gewinn- und Verlustrechnung, Cashflow-Projektion und Kapitalbedarfsberechnung.", icon: TrendingUp id: "3", value: "Execute", title: "Implementation & Oversight", description: "We guide implementation, manage change, coordinate across functions, and maintain accountability to ensure strategies translate into real organizational performance.", icon: TrendingUp
}, },
{ {
id: "4", value: "4", title: "Finalisierung & Übergabe", description: "Der finale Businessplan wird zusammengestellt, formatiert und an Sie übergeben bereit für Banken, Investoren oder den eigenen Gebrauch.", icon: CheckCircle id: "4", value: "Monitor", title: "Performance & Optimization", description: "Continuous tracking against KPIs, course correction, and ongoing optimization ensure sustained results and long-term competitive advantage.", icon: CheckCircle
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="Process steps section" ariaLabel="Consulting methodology and process section"
/> />
</div> </div>
@@ -142,70 +142,70 @@ export default function LandingPage() {
<TestimonialCardTwelve <TestimonialCardTwelve
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Weber", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "Sarah Weber" id: "1", name: "Alexandra Chen", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "Alexandra Chen, Enterprise Director"
}, },
{ {
id: "2", name: "Michael Schneider", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "Michael Schneider" id: "2", name: "Marcus Thompson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "Marcus Thompson, Operations VP"
}, },
{ {
id: "3", name: "Lisa Müller", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=3", imageAlt: "Lisa Müller" id: "3", name: "Jennifer Williams", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=3", imageAlt: "Jennifer Williams, Chief Strategy Officer"
}, },
{ {
id: "4", name: "Thomas Reiser", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=4", imageAlt: "Thomas Reiser" id: "4", name: "David Martinez", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=4", imageAlt: "David Martinez, Executive Leadership"
} }
]} ]}
cardTitle="Über 50 erfolgreiche Businesspläne und zufriedene Unternehmer, die ihre Ziele erreicht haben" cardTitle="Trusted by Fortune 500 companies and emerging industry leaders"
cardTag="Kundenvertrauen" cardTag="Enterprise Partnerships"
cardTagIcon={Star} cardTagIcon={Star}
cardAnimation="slide-up" cardAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="Testimonials section" ariaLabel="Client testimonials and case studies section"
/> />
</div> </div>
<div id="additional-services" data-section="additional-services"> <div id="additional-services" data-section="additional-services">
<ProductCardTwo <ProductCardTwo
title="Zusätzliche Dienstleistungen auf Anfrage" title="Specialized Service Offerings"
description="Neben Standard-Businessplänen biete ich spezialisierte Lösungen für Ihre individuellen Anforderungen." description="Targeted solutions for specific strategic needs and industry challenges."
products={[ products={[
{ {
id: "1", brand: "Excel Suite", name: "Individuelle Excel-Templates für den operativen Betrieb", price: "auf Anfrage", rating: 5, id: "1", brand: "Digital", name: "Digital Transformation & Technology Strategy", price: "Custom Quote", rating: 5,
reviewCount: "20+", imageSrc: "http://img.b2bpic.net/free-vector/progress-report-template-design_742173-16561.jpg?_wi=3", imageAlt: "Excel Template für Geschäftsbetrieb" reviewCount: "45+", imageSrc: "http://img.b2bpic.net/free-photo/business-team-present-investor-working-new-startup-project-finance-meeting_1421-96.jpg?_wi=3", imageAlt: "Digital transformation consulting"
}, },
{ {
id: "2", brand: "Finanzberatung", name: "Nachbetreuung & Finanzcontrolling", price: "auf Anfrage", rating: 5, id: "2", brand: "Market", name: "Market Entry & Growth Strategy", price: "Custom Quote", rating: 5,
reviewCount: "15+", imageSrc: "http://img.b2bpic.net/free-photo/business-team-present-investor-working-new-startup-project-finance-meeting_1421-96.jpg?_wi=3", imageAlt: "Finanzcontrolling Service" reviewCount: "38+", imageSrc: "http://img.b2bpic.net/free-photo/business-professionals-using-analytics-reports-papers-review-progress_482257-122889.jpg?_wi=3", imageAlt: "Market expansion strategy"
}, },
{ {
id: "3", brand: "Planung", name: "Szenarioanalyse & Strategische Szenarien", price: "auf Anfrage", rating: 5, id: "3", brand: "Merger", name: "M&A Support & Integration", price: "Custom Quote", rating: 5,
reviewCount: "12+", imageSrc: "http://img.b2bpic.net/free-photo/teamwork-scene-close-up_23-2147626393.jpg?_wi=3", imageAlt: "Szenarioanalyse Service" reviewCount: "32+", imageSrc: "http://img.b2bpic.net/free-photo/teamwork-scene-close-up_23-2147626393.jpg?_wi=3", imageAlt: "M&A consulting and integration"
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="Additional services section" ariaLabel="Specialized consulting services section"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
title="Kontakt & Beratung" title="Begin Your Strategic Engagement"
description="Haben Sie Fragen oder möchten Sie einen Beratungstermin vereinbaren? Kontaktieren Sie mich direkt. Ich freue mich auf ein Gespräch über Ihre Geschäftsidee." description="Let's discuss how we can deliver measurable value to your organization. Our consultants are ready to understand your challenges and outline a path forward."
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Vollständiger Name", required: true }, { name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "E-Mail-Adresse", required: true }, { name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "phone", type: "tel", placeholder: "Telefonnummer", required: false }, { name: "company", type: "text", placeholder: "Company Name", required: true },
{ name: "company", type: "text", placeholder: "Unternehmensname (falls vorhanden)", required: false } { name: "industry", type: "text", placeholder: "Industry/Sector", required: false }
]} ]}
textarea={{ name: "message", placeholder: "Beschreiben Sie kurz Ihre Geschäftsidee oder Anfrage...", rows: 5, required: true }} textarea={{ name: "message", placeholder: "Describe your primary business challenge or objective...", rows: 5, required: true }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/portrait-successful-businessman-works-laptop_1163-5473.jpg?_wi=2"
imageAlt="Geschäftsberater für Finanzplanung" imageAlt="Enterprise business consultant"
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
buttonText="Anfrage absenden" buttonText="Request Consultation"
ariaLabel="Contact form section" ariaLabel="Contact form section"
/> />
</div> </div>
@@ -215,26 +215,26 @@ export default function LandingPage() {
columns={[ columns={[
{ {
items: [ items: [
{ label: "Über mich", href: "#about" }, { label: "About Us", href: "#about" },
{ label: "Leistungen", href: "#services" }, { label: "Services", href: "#services" },
{ label: "Prozess", href: "#process" } { label: "Expertise", href: "#process" }
] ]
}, },
{ {
items: [ items: [
{ label: "Kontakt", href: "#contact" }, { label: "Contact", href: "#contact" },
{ label: "Impressum", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Datenschutz", href: "#" } { label: "Terms of Service", href: "#" }
] ]
}, },
{ {
items: [ items: [
{ label: "E-Mail", href: "mailto:info@businessplan-konsult.de" }, { label: "Email", href: "mailto:hello@consulting.pro" },
{ label: "Telefon", href: "tel:+49123456789" } { label: "Phone", href: "tel:+1-555-0100" }
] ]
} }
]} ]}
logoText="Businessplan & Finanzberatung" logoText="Strategic Business Consulting"
ariaLabel="Site footer" ariaLabel="Site footer"
/> />
</div> </div>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-nunito-sans), sans-serif; font-family: var(--font-dm-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-nunito-sans), sans-serif; font-family: var(--font-manrope), sans-serif;
} }

View File

@@ -2,23 +2,23 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f7f6f7;; /* --background: #f5f5f5;;
--card: #ffffff;; --card: #ffffff;;
--foreground: #0c1325;; --foreground: #1c1c1c;;
--primary-cta: #0b07ff;; --primary-cta: #1c1c1c;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #93b7ff;; --accent: #15479c;;
--background-accent: #a8bae8;; */ --background-accent: #a8cce8;; */
--background: #f7f6f7;; --background: #f5f5f5;;
--card: #ffffff;; --card: #ffffff;;
--foreground: #0c1325;; --foreground: #1c1c1c;;
--primary-cta: #0b07ff;; --primary-cta: #1c1c1c;;
--primary-cta-text: #f7f6f7;; --primary-cta-text: #f7f6f7;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--secondary-cta-text: #0c1325;; --secondary-cta-text: #0c1325;;
--accent: #93b7ff;; --accent: #15479c;;
--background-accent: #a8bae8;; --background-accent: #a8cce8;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);