diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2099a05..77a6849 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "BrewCraft | Premium Specialty Coffee Roasted Fresh", description: "Discover BrewCraft's artisan specialty coffee. Single-origin beans, signature blends, and cold brew. Fresh roasted daily. Order online or visit our cafe.", keywords: "specialty coffee, artisan roast, single-origin coffee, cold brew, cafe, coffee subscription, specialty beans", metadataBase: new URL("https://brewcraft.coffee"), - alternates: { - canonical: "https://brewcraft.coffee"}, - openGraph: { - title: "BrewCraft | Premium Specialty Coffee", description: "Experience the finest specialty coffee roasted in-house. Single-origin beans, signature blends, and cold brew.", url: "https://brewcraft.coffee", siteName: "BrewCraft Coffee", type: "website"}, - twitter: { - card: "summary_large_image", title: "BrewCraft | Premium Specialty Coffee", description: "Discover our artisan specialty coffee roasted fresh daily."}, - robots: { - index: true, - follow: true, - }, + title: 'BrewCraft Coffee', + description: 'Experience the finest specialty coffee roasted in-house', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}