Update src/app/layout.tsx

This commit is contained in:
2026-03-03 06:37:27 +00:00
parent fb0daea7e8
commit fbc33aa469

View File

@@ -1,24 +1,25 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import { Playfair_Display } 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 playfairDisplay = Playfair_Display({
variable: "--font-playfair-display", subsets: ["latin"],
weight: ["400", "500", "600", "700", "800", "900"],
});
const inter = Inter({
variable: "--font-inter", 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: "Brew Haven - Specialty Coffee & Cozy Café", description: "Discover expertly roasted specialty coffees in our welcoming café. Premium beans, skilled baristas, and the perfect ambiance await.", keywords: "coffee shop, specialty coffee, espresso, café, cold brew, coffee roastery", openGraph: {
title: "Brew Haven - Specialty Coffee & Cozy Café", description: "Discover expertly roasted specialty coffees in our welcoming café.", siteName: "Brew Haven", type: "website"},
title: "Abu Saleh Coffee - Premium Coffee in Amman, Jordan", description: "Experience premium coffee in Amman. Open 24/7 with freshly roasted beans, expert baristas, and a luxurious atmosphere. Located in the heart of Amman.", keywords: "coffee, Amman, Jordan, specialty coffee, 24/7 café, premium coffee roastery", openGraph: {
title: "Abu Saleh Coffee - Premium Coffee in Amman", description: "Premium coffee experience in Amman, Jordan. Open 24/7 with luxury ambiance.", siteName: "Abu Saleh Coffee", type: "website"},
twitter: {
card: "summary_large_image", title: "Brew Haven - Premium Specialty Coffees", description: "Join us for expertly crafted coffee in a warm, inviting atmosphere."},
card: "summary_large_image", title: "Abu Saleh Coffee - Amman's Premium Coffee Destination", description: "Experience premium coffee 24/7 in the heart of Amman, Jordan."},
};
export default function RootLayout({
@@ -30,7 +31,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${playfairDisplay.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}