From d004d310179f18fdc741b5e52b9f17060e01bf5e Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 11:46:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d577919..ae3586e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,32 +1,31 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; +import { Source_Code_Pro } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", +const sourceCodePro = Source_Code_Pro({ + variable: "--font-source-code-pro", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "2 - Premium Specialty Coffee", - description: "Discover exceptional specialty coffee at 2. Premium beans, expert baristas, welcoming atmosphere.", + title: "1 - Premium Specialty Coffee", + description: "Discover exceptional specialty coffee at 1. Premium beans, expert baristas, welcoming atmosphere.", keywords: ["specialty coffee", "coffee shop", "espresso", "cafe", "artisan coffee"], robots: { index: true, follow: true, }, openGraph: { - title: "2 - Premium Specialty Coffee", - description: "Discover exceptional specialty coffee at 2", - siteName: "2", + title: "1 - Premium Specialty Coffee", + description: "Discover exceptional specialty coffee at 1", + siteName: "1", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766749013962-htnou8d4.jpg", - alt: "2 coffee", + alt: "1 coffee", }, ], }, @@ -41,7 +40,7 @@ export default function RootLayout({ {children} @@ -1267,4 +1266,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file