Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dc0c61def4 | |||
| 0d6622264f | |||
| 547b41323c | |||
| e8c7cfafbe | |||
| 577711731c |
@@ -1,38 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat, Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const geist = Geist({
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Garten- und Landschaftsbau Jochen Weber | Professionelle Gartengestaltung", description: "Professionelle Gartengestaltung und Landschaftsbau mit über 20 Jahren Erfahrung. Von der Planung bis zur Realisierung – wir schaffen Traumgärten.", keywords: "Garten, Landschaftsbau, Gartengestaltung, Gartenplanung, Gartenpflege", openGraph: {
|
title: "Jochen Weber - Garten & Landschaftsbau", description: "Professionelle Gartengestaltung und Landschaftsbau mit Leidenschaft für Details."};
|
||||||
title: "Garten- und Landschaftsbau Jochen Weber", description: "Professionelle Gartengestaltung und Landschaftsbau mit Leidenschaft", siteName: "Jochen Weber", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Jochen Weber - Garten & Landschaftsbau", description: "Ihre Traumgärten zum Leben erweckt"},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="de">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1400,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -156,7 +156,8 @@ export default function LandingPage() {
|
|||||||
description="Haben Sie Fragen zu unseren Leistungen? Schreiben Sie uns eine Nachricht und wir melden uns schnellstmöglich bei Ihnen zurück. Gemeinsam gestalten wir Ihren Traum-Garten!"
|
description="Haben Sie Fragen zu unseren Leistungen? Schreiben Sie uns eine Nachricht und wir melden uns schnellstmöglich bei Ihnen zurück. Gemeinsam gestalten wir Ihren Traum-Garten!"
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Ihr Name", required: true },
|
{ name: "name", type: "text", placeholder: "Ihr Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Ihre E-Mail", required: true }
|
{ name: "email", type: "email", placeholder: "Ihre E-Mail", required: true },
|
||||||
|
{ name: "phone", type: "tel", placeholder: "Ihre Telefonnummer", required: false }
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{
|
||||||
name: "message", placeholder: "Ihre Nachricht oder Anfrage...", rows: 5,
|
name: "message", placeholder: "Ihre Nachricht oder Anfrage...", rows: 5,
|
||||||
|
|||||||
Reference in New Issue
Block a user