diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0de898d..cd8d792 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; +import { Poppins } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "ADITYA RESIDENCY - 3-Star Hotel in Guwahati", description: "Comfortable and affordable 3-star hotel in Guwahati. 4.3★ rated, free Wi-Fi, AC rooms, parking. Perfect for students, families, and business travelers in Christian Basti.", keywords: "hotel guwahati, 3-star hotel, accommodation guwahati, christian basti hotel, aditya residency, budget hotel guwahati", openGraph: { - title: "ADITYA RESIDENCY - 3-Star Hotel in Guwahati", description: "Experience comfort and convenience at ADITYA RESIDENCY. 4.3★ rated, affordable accommodation with free Wi-Fi and parking. Book now!", type: "website", siteName: "ADITYA RESIDENCY", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-wearing-embroidered-shirt_23-2149394271.jpg", alt: "Aditya Residency Hotel Building"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ADITYA RESIDENCY - 3-Star Hotel in Guwahati", description: "Comfortable accommodation with free Wi-Fi, AC rooms, and friendly service. 4.3★ rated. Book your stay today!", images: ["http://img.b2bpic.net/free-photo/young-woman-wearing-embroidered-shirt_23-2149394271.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ADITYA RESIDENCY | 3-Star Comfort in Guwahati", description: "3-star hotel in Christian Basti, Guwahati with comfortable rooms, free Wi-Fi, 24/7 reception, and excellent guest reviews."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +