diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5c7f90b..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +0,0 @@ -import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Casa Antigua Entre Mer et Reserve - Luxury Moroccan Vacation Rental", description: "Discover Casa Antigua, a stunning vacation rental in Sidi R'bat, Morocco. Coastal maison between the sea and nature reserve. Book on Airbnb or Booking.com. €45/night.", keywords: "vacation rental, Morocco, Airbnb, Booking.com, coastal house, Sidi R'bat, luxury maison, travel", metadataBase: new URL("https://casaantigua.com"), - alternates: { - canonical: "https://casaantigua.com"}, - openGraph: { - title: "Casa Antigua Entre Mer et Reserve - Moroccan Paradise", description: "Experience luxury coastal living in Morocco. Traditional maison with modern comforts between the Atlantic Ocean and nature reserve.", url: "https://casaantigua.com", siteName: "Casa Antigua", images: [ - { - url: "http://img.b2bpic.net/free-photo/vintage-moroccan-mosque-decorative-wall_1203-4686.jpg", alt: "Casa Antigua exterior view"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Casa Antigua - Your Moroccan Coastal Getaway", description: "Luxury vacation rental in Sidi R'bat, Morocco. Book now on Airbnb or Booking.com.", images: ["http://img.b2bpic.net/free-photo/vintage-moroccan-mosque-decorative-wall_1203-4686.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -