From f9b2c20b88945e016eaea65c07492efcdb16376c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:32:17 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d095cff..c2ada43 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,33 +1,27 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const publicSans = Public_Sans({ + variable: "--font-public-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], }); 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, follow: true, }, 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: { - 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({ @@ -39,7 +33,7 @@ export default function RootLayout({ {children} -- 2.49.1 From d463dc703d2c6cbb01b9805b7620e75a4f23f9e4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:32:18 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 164 +++++++++++++++++++++++------------------------ 1 file changed, 82 insertions(+), 82 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2ab0905..abb7e4f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,131 +10,131 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; 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() { return (
@@ -142,70 +142,70 @@ export default function LandingPage() {
@@ -215,26 +215,26 @@ export default function LandingPage() { columns={[ { items: [ - { label: "Über mich", href: "#about" }, - { label: "Leistungen", href: "#services" }, - { label: "Prozess", href: "#process" } + { label: "About Us", href: "#about" }, + { label: "Services", href: "#services" }, + { label: "Expertise", href: "#process" } ] }, { items: [ - { label: "Kontakt", href: "#contact" }, - { label: "Impressum", href: "#" }, - { label: "Datenschutz", href: "#" } + { label: "Contact", href: "#contact" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } ] }, { items: [ - { label: "E-Mail", href: "mailto:info@businessplan-konsult.de" }, - { label: "Telefon", href: "tel:+49123456789" } + { label: "Email", href: "mailto:hello@consulting.pro" }, + { label: "Phone", href: "tel:+1-555-0100" } ] } ]} - logoText="Businessplan & Finanzberatung" + logoText="Strategic Business Consulting" ariaLabel="Site footer" /> -- 2.49.1 From 3c43421e580e1e05c3f3f71298a948082a2ce44f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:32:18 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 53147f7..ce3eac0 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-public-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-nunito-sans), sans-serif; + font-family: var(--font-public-sans), sans-serif; } -- 2.49.1 From 13d531ac10a88926497c40ebcd37e2a1c98b8ab3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:32:19 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 5d9ae99..b0ed1bc 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f7f6f7;; + /* --background: #f5f5f5;; --card: #ffffff;; - --foreground: #0c1325;; - --primary-cta: #0b07ff;; + --foreground: #1c1c1c;; + --primary-cta: #1c1c1c;; --secondary-cta: #ffffff;; - --accent: #93b7ff;; - --background-accent: #a8bae8;; */ + --accent: #15479c;; + --background-accent: #a8cce8;; */ - --background: #f7f6f7;; + --background: #f5f5f5;; --card: #ffffff;; - --foreground: #0c1325;; - --primary-cta: #0b07ff;; + --foreground: #1c1c1c;; + --primary-cta: #1c1c1c;; --primary-cta-text: #f7f6f7;; --secondary-cta: #ffffff;; --secondary-cta-text: #0c1325;; - --accent: #93b7ff;; - --background-accent: #a8bae8;; + --accent: #15479c;; + --background-accent: #a8cce8;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1