Update src/app/layout.tsx

This commit is contained in:
2026-03-07 09:52:14 +00:00
parent 6377f2483f
commit 69b23ecdee

View File

@@ -1,55 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ULU Summer House | Beachfront Restaurant & Bar Jūrmala", description: "Discover ULU Summer House in Jūrmala—fresh seafood, craft cocktails, live music, and stunning sunsets. Dine beachfront with Scandinavian flair. Reserve your table today.", keywords: "beachfront restaurant Jūrmala, seafood restaurant Latvia, summer bar music, coastal dining, fresh fish, cocktails, beach restaurant Smiltenes", metadataBase: new URL("https://www.ulusummerhouse.lv"),
alternates: {
canonical: "https://www.ulusummerhouse.lv"
},
openGraph: {
title: "ULU Summer House | Beachfront Dining & Live Music", description: "Fresh seafood, craft cocktails, and unforgettable sunsets at Latvia's favorite beach restaurant in Jūrmala.", url: "https://www.ulusummerhouse.lv", siteName: "ULU Summer House", images: [
{
url: "http://img.b2bpic.net/free-photo/high-angle-shot-wooden-deck-seashore-leading-sea-sunset_181624-21932.jpg", alt: "Sunset at ULU Summer House beachfront restaurant"
}
],
type: "website"
},
twitter: {
card: "summary_large_image", title: "ULU Summer House | Beachfront Restaurant Jūrmala", description: "Fresh seafood, cocktails, live music, and golden hour views. Reserve now: +371 26 131 215", images: ["http://img.b2bpic.net/free-photo/high-angle-shot-wooden-deck-seashore-leading-sea-sunset_181624-21932.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "ULU Summer House", description: "Beachfront dining meets vibrant summer atmosphere"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}