diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6321262..a94a979 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
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";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Almar | Sunset Restaurant in Montevideo", description: "Enjoy ocean views, afternoon tea, sushi, and unforgettable sunsets at Almar in Montevideo. Call now to reserve your table. Opens at 4:00 PM.", keywords: "restaurant Montevideo, sunset restaurant, Rambla restaurant, afternoon tea Montevideo, sushi Montevideo, ocean view dining", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Almar | Premium Sunset Dining in Montevideo", description: "Experience Montevideo's most beautiful sunset dining. Premium sushi, afternoon tea, and ocean views.", siteName: "Almar Restaurant", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg", alt: "Ocean sunset view from Almar restaurant"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Almar | Sunset Restaurant Montevideo", description: "Unforgettable ocean view dining experience", images: ["http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg"],
- },
-};
+ title: "Almar - Sunset Dining in Montevideo", description: "Experience Montevideo's most beautiful sunset dining at Almar. Ocean views, afternoon tea, and exquisite cuisine."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-