Update src/app/layout.tsx
This commit is contained in:
@@ -1,31 +1,32 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Source_Code_Pro } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const sourceCodePro = Source_Code_Pro({
|
||||
variable: "--font-source-code-pro",
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "1 - Premium Specialty Coffee",
|
||||
description: "Discover exceptional specialty coffee at 1. Premium beans, expert baristas, welcoming atmosphere.",
|
||||
title: "2 - Premium Specialty Coffee",
|
||||
description: "Discover exceptional specialty coffee at 2. Premium beans, expert baristas, welcoming atmosphere.",
|
||||
keywords: ["specialty coffee", "coffee shop", "espresso", "cafe", "artisan coffee"],
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "1 - Premium Specialty Coffee",
|
||||
description: "Discover exceptional specialty coffee at 1",
|
||||
siteName: "1",
|
||||
title: "2 - Premium Specialty Coffee",
|
||||
description: "Discover exceptional specialty coffee at 2",
|
||||
siteName: "2",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766749013962-htnou8d4.jpg",
|
||||
alt: "1 coffee",
|
||||
alt: "2 coffee",
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -40,7 +41,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={sourceCodePro.variable}
|
||||
className={poppins.variable}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1266,4 +1267,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user