Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 33bf0b765d | |||
| ad85a1a492 | |||
| d03c0f324e | |||
| 5a5056cd37 |
@@ -1,11 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
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 = {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -13,8 +19,10 @@ export default function RootLayout({
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="de">
|
<html lang="en">
|
||||||
<body className={inter.className}>{children}
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Fahrzeug reservieren", href: "#contact" }
|
{ text: "Alle Fahrzeuge auf mobile.de ansehen", href: "https://www.mobile.de" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -173,8 +173,8 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Kontaktanfrage – Fahrzeug reservieren oder Probefahrt buchen"
|
title="Probefahrt jetzt 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."
|
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={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Vollständiger Name", required: true },
|
{ name: "name", type: "text", placeholder: "Vollständiger Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "E-Mail Adresse", required: true },
|
{ name: "email", type: "email", placeholder: "E-Mail Adresse", required: true },
|
||||||
|
|||||||
Reference in New Issue
Block a user