3 Commits

Author SHA1 Message Date
ad85a1a492 Update src/app/page.tsx 2026-03-10 06:09:08 +00:00
d03c0f324e Update src/app/layout.tsx 2026-03-10 06:09:07 +00:00
5a5056cd37 Merge version_2 into main
Merge version_2 into main
2026-03-10 06:05:33 +00:00
2 changed files with 16 additions and 8 deletions

View File

@@ -1,11 +1,17 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Böhmer Automobile Gebrauchtwagen in Salzgitter", description: "Hochwertige Gebrauchtwagen mit transparenter Beratung und schneller Abwicklung in Salzgitter. Vertrauenswürdiger Autohändler mit 4.7★ Bewertung."};
title: "Böhmer Automobile Gebrauchtwagen Salzgitter", description: "Hochwertige Gebrauchtwagen in Salzgitter Geprüft, Fair & Sofort Verfügbar. Transparente Beratung und schnelle Abwicklung."};
export default function RootLayout({
children,
@@ -13,8 +19,10 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="de">
<body className={inter.className}>{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -110,7 +110,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Fahrzeug reservieren", href: "#contact" }
{ text: "Alle Fahrzeuge auf mobile.de ansehen", href: "https://www.mobile.de" }
]}
/>
</div>
@@ -173,8 +173,8 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Kontaktanfrage Fahrzeug reservieren oder Probefahrt buchen"
description="Füllen Sie das Kontaktformular aus und wir melden uns schnellstmöglich bei Ihnen. Teilen Sie uns mit, welches Fahrzeug Sie interessiert oder welche Probefahrt Sie buchen möchten."
title="Probefahrt jetzt buchen"
description="Vereinbaren Sie eine Probefahrt und erleben Sie Ihr Traumauto live. Wir kümmern uns um alle Details und machen die Buchung so einfach wie möglich."
inputs={[
{ name: "name", type: "text", placeholder: "Vollständiger Name", required: true },
{ name: "email", type: "email", placeholder: "E-Mail Adresse", required: true },