diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index accb54d..92d884b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Open_Sans } from "next/font/google";
+import { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "RURAL Tamarindo | Authentic Costa Rican Food", description: "Experience authentic Costa Rican cuisine at RURAL Tamarindo. Rustic outdoor dining, affordable prices, pet-friendly. Traditional tico dishes loved by tourists and locals.", keywords: "Costa Rican restaurant, Tamarindo food, authentic tico cuisine, ceviche, affordable dining, rustic restaurant", openGraph: {
- title: "RURAL Tamarindo | Authentic Costa Rican Cuisine", description: "Rustic, tropical dining celebrating traditional Costa Rican flavors. Affordable prices, cozy atmosphere, pet-friendly.", siteName: "RURAL Tamarindo", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/girl-with-beer-waiting-her-friends_23-2147680569.jpg", alt: "RURAL Tamarindo rustic restaurant"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "RURAL Tamarindo | Authentic Costa Rican Food", description: "Experience pura vida dining: authentic tico cuisine, rustic charm, affordable prices. Tamarindo's favorite local spot.", images: ["http://img.b2bpic.net/free-photo/girl-with-beer-waiting-her-friends_23-2147680569.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-