diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..53242ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 { Poppins } 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 poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,39 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "A1 Fruit & Juice Shop - Fresh Juice in Hyderabad", + description: "Order fresh, healthy juices in Hyderabad. Quality fruits, fast service, 4.7★ rated. Call now or order online.", + keywords: "juice shop near me, fresh juice Hyderabad, fruit juice shop, healthy juice bar", + metadataBase: new URL("https://a1juiceshop.com"), + alternates: { + canonical: "https://a1juiceshop.com", + }, + openGraph: { + title: "A1 Fruit & Juice Shop - Fresh Healthy Juices", + description: "Fresh fruit juices made daily in Hyderabad. Quality ingredients, affordable prices, fast service.", + url: "https://a1juiceshop.com", + siteName: "A1 Fruit & Juice Shop", + type: "website", + images: [ + { + url: "https://a1juiceshop.com/og-image.jpg", + alt: "A1 Fruit & Juice Shop - Fresh Juices", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "A1 Fruit & Juice Shop - Fresh Juices in Hyderabad", + description: "Healthy fresh juices, fast service, open daily. Order now!", + images: ["https://a1juiceshop.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}