Update src/app/layout.tsx

This commit is contained in:
2026-03-13 16:34:57 +00:00
parent 2d12beef78
commit 383c5c3c57

View File

@@ -1,27 +1,53 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Antik Hotel Sofia Litomyšl | Luxusní Ubytování",
description: "Boutique hotel v historické Litomyšli. Komfortní pokoje s balkonem, bezplatné WiFi, parkování. Rezervujte online nebo zavolejte +420 777 613 191.",
keywords: "hotel Litomyšl, ubytování Česka, boutique hotel, Litomyšl rezervace, hotel s balkonem",
metadataBase: new URL("https://antikhotelsofia.cz"),
alternates: {
canonical: "https://antikhotelsofia.cz",
},
openGraph: {
title: "Antik Hotel Sofia Litomyšl - Luxusní Ubytování",
description: "Vítejte v Antik Hotel Sofia. Elegantní boutique hotel v srdci historické Litomyšle. Komfortní pokoje, bezplatné WiFi, přátelské prostředí pro všechny.",
url: "https://antikhotelsofia.cz",
siteName: "Antik Hotel Sofia",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Antik Hotel Sofia Litomyšl",
description: "Luxusní boutique hotel v Litomyšli. Rezervujte nyní!",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}