From 2e8cc5578332ebf9346dc0c8efc54c69936fb3e7 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 16:06:51 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..8af10dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,39 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Ciriaco Hotel & Resort - Calbayog City, Samar | Book Now", + description: "Luxury beachfront hotel in Calbayog City with outdoor pool, free Wi-Fi, and stunning Samar Sea views. Book your stay today or call (055) 209 6521.", + keywords: "hotel Calbayog City, resort Samar, beachfront accommodation, luxury hotel Philippines, pool resort, sea view hotel", + metadataBase: new URL("https://ciriacohotel.com"), + alternates: { + canonical: "https://ciriacohotel.com", + }, + openGraph: { + title: "Ciriaco Hotel & Resort - Your Perfect Seaside Escape", + description: "Experience luxury and comfort at our beachfront resort in Calbayog City. Premium rooms, outdoor pool, and unforgettable sea views.", + url: "https://ciriacohotel.com", + siteName: "Ciriaco Hotel & Resort", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/elegant-brunette-female-sexy-dress-posing-stylish-beach-restaurant-asian-style-full-lenght_273443-3190.jpg", + alt: "Ciriaco Hotel & Resort oceanfront view", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Ciriaco Hotel & Resort - Luxury Beachfront Stay", + description: "Book your perfect getaway at our seaside resort in Calbayog City.", + images: ["http://img.b2bpic.net/free-photo/elegant-brunette-female-sexy-dress-posing-stylish-beach-restaurant-asian-style-full-lenght_273443-3190.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}