Update src/app/layout.tsx

This commit is contained in:
2026-03-21 19:47:50 +00:00
parent 9870cc56d9
commit 049e8a7ef0

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Get Fruity Cafe - Fresh Smoothies & Healthy Eats in Conyers, GA",
description: "Premium smoothie bar and healthy cafe in Conyers, GA. Fresh smoothies, wraps, acai bowls, salads & healthy snacks. Order online or visit us today!",
keywords: "smoothies, healthy cafe, wraps, acai bowls, Conyers GA, fresh juice, vegan options, healthy eats",
metadataBase: new URL("https://getfruitycafe.com"),
alternates: {
canonical: "https://getfruitycafe.com",
},
openGraph: {
title: "Get Fruity Cafe - Fresh Smoothies & Healthy Food",
description: "Premium smoothie bar and healthy cafe in Conyers, GA. Fresh ingredients, energetic vibe, and delicious flavors.",
url: "https://getfruitycafe.com",
siteName: "Get Fruity Cafe",
images: [
{
url: "http://img.b2bpic.net/free-photo/colorful-healthy-breakfast-sweet-deserts-few-different-chia-puddings-glass-jars-wooden-table-kitchen-home_343596-1244.jpg",
alt: "fresh smoothie bowl colorful fruits",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Get Fruity Cafe - Fresh Smoothies & Healthy Eats",
description: "Premium smoothie cafe in Conyers, GA with fresh ingredients and healthy options.",
images: ["http://img.b2bpic.net/free-photo/colorful-healthy-breakfast-sweet-deserts-few-different-chia-puddings-glass-jars-wooden-table-kitchen-home_343596-1244.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}