Update src/app/layout.tsx

This commit is contained in:
2026-02-12 12:05:32 +00:00
parent d3b47aabf3
commit d7ed6cb1de

View File

@@ -4,36 +4,24 @@ import { Work_Sans } from "next/font/google";
import "./globals.css";
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
variable: "--font-open-sans", subsets: ["latin"],
});
const workSans = Work_Sans({
variable: "--font-work-sans",
subsets: ["latin"],
variable: "--font-work-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Brew Haven - Premium Coffee & Cozy Atmosphere",
description: "Discover artisanal coffee, expert baristas, and a welcoming community at Brew Haven. Specialty blends, seasonal offerings, and the perfect space to work or relax.",
keywords: ["coffee shop", "specialty coffee", "barista", "latte", "espresso", "cozy café", "local coffee"],
title: "Brew Haven - Premium Coffee & Cozy Atmosphere", description: "Discover artisanal coffee, expert baristas, and a welcoming community at Brew Haven. Specialty blends, seasonal offerings, and the perfect space to work or relax.", keywords: ["coffee shop", "specialty coffee", "barista", "latte", "espresso", "cozy café", "local coffee"],
openGraph: {
title: "Brew Haven - Premium Coffee & Cozy Atmosphere",
description: "Experience exceptional coffee and a warm, welcoming space at Brew Haven. Visit us today.",
siteName: "Brew Haven",
type: "website",
images: [
title: "Brew Haven - Premium Coffee & Cozy Atmosphere", description: "Experience exceptional coffee and a warm, welcoming space at Brew Haven. Visit us today.", siteName: "Brew Haven", type: "website", images: [
{
url: "https://img.b2bpic.net/free-photo/cup-cappuccino-with-cookies_140725-6400.jpg",
alt: "Brew Haven specialty latte"
url: "https://img.b2bpic.net/free-photo/cup-cappuccino-with-cookies_140725-6400.jpg", alt: "Brew Haven specialty latte"
}
]
},
twitter: {
card: "summary_large_image",
title: "Brew Haven - Premium Coffee & Cozy Atmosphere",
description: "Discover artisanal coffee and a welcoming community at Brew Haven.",
images: ["https://img.b2bpic.net/free-photo/cup-cappuccino-with-cookies_140725-6400.jpg"]
card: "summary_large_image", title: "Brew Haven - Premium Coffee & Cozy Atmosphere", description: "Discover artisanal coffee and a welcoming community at Brew Haven.", images: ["https://img.b2bpic.net/free-photo/cup-cappuccino-with-cookies_140725-6400.jpg"]
}
};