diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e01b90a..19076ae 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ 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 "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Polar Bear Ice Cream | Premium Luxury Sundaes & Flavors", description: "Experience the most loved ice cream in town. Premium DBC Sundae, fresh flavors, cozy ambience & friendly staff. Visit Polar Bear for unforgettable dessert moments.", keywords: "ice cream, premium ice cream, DBC sundae, luxury dessert, ice cream shop, gourmet flavors, family dessert", metadataBase: new URL("https://polarbear-icecream.com"), - alternates: { - canonical: "https://polarbear-icecream.com"}, - openGraph: { - title: "Polar Bear Ice Cream | Premium Luxury Sundaes", description: "Discover the legendary DBC Sundae and refreshing flavors at Polar Bear. Premium ice cream for families and celebrations.", url: "https://polarbear-icecream.com", siteName: "Polar Bear Ice Cream", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-chocolate-milkshake-with-pretzel_23-2148635650.jpg", alt: "premium chocolate ice cream drizzle luxury"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Polar Bear Ice Cream | Premium Luxury Sundaes", description: "Experience the most loved ice cream in town with our iconic DBC Sundae and refreshing flavors.", images: ["http://img.b2bpic.net/free-photo/close-up-chocolate-milkshake-with-pretzel_23-2148635650.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Polar Bear Ice Cream", description: "Premium ice cream experience with unforgettable flavors"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}