diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..07491b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}