Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:06:07 +00:00
2 changed files with 9 additions and 65 deletions

View File

@@ -1,75 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Restaurace & Vinárna Jadran Plzeň | Středomořská Kuchyně",
description: "Elegantní restaurace v Plzni s autentickou středomořskou kuchyní. Čerstvé ryby, vybraná vína a přátelská atmosféra. Rezervujte si svůj stůl online!",
keywords: "restaurace Plzeň, vinárna, středomořská kuchyně, ryby, vína, rezervace",
metadataBase: new URL("https://jadran-plzen.cz"),
alternates: {
canonical: "https://jadran-plzen.cz",
},
openGraph: {
title: "Restaurace & Vinárna Jadran - Plzeň",
description: "Objevte autentickou středomořskou kuchyni v srdci Plzně. Kvalitní jídlo, vybraná vína a přátelský personál.",
url: "https://jadran-plzen.cz",
siteName: "Restaurace & Vinárna Jadran",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg",
alt: "Restaurace Jadran",
},
],
},
twitter: {
card: "summary_large_image",
title: "Restaurace & Vinárna Jadran",
description: "Elegantní středomořská restaurace v Plzni",
images: ["http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Restaurace & Vinárna Jadran - Plzeň", description: "Elegantní restaurace v srdci Plzně s autentickou středomořskou kuchyní, vybranými víny a přátelskou atmosférou."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="cs">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -56,7 +56,7 @@ export default function HomePage() {
imageAlt="Elegantní interiér restaurace Jadran s moderním designem"
mediaAnimation="slide-up"
buttons={[
{ text: "Rezervace", href: "#contact" },
{ text: "Zarezervovat Stůl", href: "#contact" },
{ text: "Naše Menu", href: "#menu" },
]}
buttonAnimation="slide-up"
@@ -268,4 +268,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}