Update src/app/layout.tsx
This commit is contained in:
@@ -1,55 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Antiquitäten Ankauf & Verkauf | Faire Preise seit 20 Jahren", description: "Seriöser Antiquitätenhandel: Ankauf und Verkauf von Möbeln, Kunst, Schmuck und Sammlerstücken. Kostenlose Bewertung, faire Preise, diskrete Abwicklung.", keywords: "Antiquitäten ankauf, Antiquitätenhandel, Antiquitätenverkauf, Möbelankauf, Kunstankauf, Schmuckankauf, Raritäten", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Antiquitäten Ankauf & Verkauf | Über 20 Jahre Erfahrung", description: "Vertrauensvoller Antiquitätenhandel mit fairer Bewertung und schneller Abwicklung. Jetzt kostenlose Expertenbewertung anfragen!", type: "website", siteName: "Antiquitäten Ankauf", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/luxury-meeting-dining-room-table-multiple-chairs_114579-2067.jpg", alt: "Luxuriös eingerichtetes Wohnzimmer mit Antiquitäten"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Antiquitäten Ankauf & Verkauf | Faire Preise", description: "Professioneller Antiquitätenhandel seit über 20 Jahren. Kostenlose Bewertung, faire Preise, diskrete Abwicklung.", images: ["http://img.b2bpic.net/free-photo/luxury-meeting-dining-room-table-multiple-chairs_114579-2067.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Antiquitäten Ankauf", description: "Seriöser Antiquitätenankauf mit über 20 Jahren Expertise"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charSet="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</head>
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user