Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 33bf0b765d | |||
| ad85a1a492 | |||
| d03c0f324e | |||
| 5a5056cd37 |
@@ -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: `
|
||||
|
||||
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user