diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d8c1ce9..44459fb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,22 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { DM_Sans } 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"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Craft Coffee | Specialty Beans, Refined Experience", description: "Expertly sourced specialty coffee beans with minimalist design. Explore our single-origin blends and brewing methods at our downtown café.", keywords: "specialty coffee, artisan coffee, single-origin beans, coffee café, premium coffee", metadataBase: new URL("https://craftcoffee.com"), - alternates: { - canonical: "https://craftcoffee.com"}, - openGraph: { - title: "Craft Coffee | Specialty Beans, Refined Experience", description: "Expertly sourced specialty coffee beans. Every cup tells a story of precision and care.", type: "website", siteName: "Craft Coffee", url: "https://craftcoffee.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-apron-holding-glass-with-coffee-cups_23-2148366679.jpg", alt: "Premium specialty coffee"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Craft Coffee | Specialty Beans, Refined Experience", description: "Expertly sourced specialty coffee beans. Every cup tells a story of precision and care.", images: ["http://img.b2bpic.net/free-photo/man-apron-holding-glass-with-coffee-cups_23-2148366679.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Craft Coffee - Premium Specialty Coffee", description: "Expertly sourced beans, beautifully presented. Every cup tells a story of precision and care."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -