Merge version_2 into main #4
@@ -1,38 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat, Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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: "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"},
|
||||
};
|
||||
title: "Jochen Weber - Garten & Landschaftsbau", description: "Professionelle Gartengestaltung und Landschaftsbau mit Leidenschaft für Details."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="de">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1400,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</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!"
|
||||
inputs={[
|
||||
{ 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={{
|
||||
name: "message", placeholder: "Ihre Nachricht oder Anfrage...", rows: 5,
|
||||
|
||||
Reference in New Issue
Block a user