Update src/app/layout.tsx
This commit is contained in:
@@ -1,26 +1,46 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Halant } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
|
||||||
|
|
||||||
|
const halant = Halant({
|
||||||
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
export const metadata: Metadata = {
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
title: "Webild components 2",
|
});
|
||||||
description: "Generated by create next app",
|
|
||||||
};
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const libreBaskerville = Libre_Baskerville({
|
||||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||||
weight: ["400", "700"],
|
weight: ["400", "700"],
|
||||||
});
|
});
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
export const metadata: Metadata = {
|
||||||
});
|
title: "Ginger and Baker | Elevated Fort Collins Dining & Events", description: "Discover Ginger and Baker: an all-day gathering place in Fort Collins for exquisite food, artisan bakery, unique cafe experiences, and unforgettable events. Reserve your table or plan your celebration today.", keywords: "Ginger and Baker, Fort Collins restaurant, Fort Collins bakery, Fort Collins events, cafe, dining, wedding venue Fort Collins, artisan pastries, craft cocktails, private events", metadataBase: new URL("https://gingerandbaker.com"),
|
||||||
|
openGraph: {
|
||||||
|
title: "Ginger and Baker | Elevated Fort Collins Dining & Events", description: "Discover Ginger and Baker: an all-day gathering place in Fort Collins for exquisite food, artisan bakery, unique cafe experiences, and unforgettable events. Reserve your table or plan your celebration today.", url: "https://gingerandbaker.com", siteName: "Ginger and Baker", images: [
|
||||||
|
{
|
||||||
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=7nqvyy", alt: "Elegant restaurant interior with food"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
type: "website"
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "Ginger and Baker | Elevated Fort Collins Dining & Events", description: "Discover Ginger and Baker: an all-day gathering place in Fort Collins for exquisite food, artisan bakery, unique cafe experiences, and unforgettable events. Reserve your table or plan your celebration today.", images: [
|
||||||
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=7nqvyy"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -30,7 +50,9 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
<body
|
||||||
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||||
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Reference in New Issue
Block a user