diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f62dbaa..0abd95a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -103,7 +103,7 @@ export default function ContactPage() { }} buttonText="Send Message" useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/chicken-stuffed-with-meat_140725-9373.jpg" + imageSrc="http://img.b2bpic.net/free-photo/chicken-stuffed-with-meat_140725-9373.jpg?_wi=6" mediaAnimation="slide-up" /> diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..f1bf87b 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 { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Koyla Kings | Halal Pakistani Indian Chinese BBQ | Mount Druitt NSW", + description: "Premium halal restaurant in Mount Druitt featuring authentic Pakistani, Indian, Chinese, and BBQ cuisine. Open 3PM-12AM daily. Fire-cooked specialties. Easy parking. Order online or reserve your table.", + keywords: "halal restaurant, Pakistani food, Indian restaurant, BBQ Mount Druitt, halal biryani, karahi, Chinese halal, Mount Druitt NSW, halal certification, family dining", + metadataBase: new URL("https://koylakings.com.au"), + alternates: { + canonical: "https://koylakings.com.au", + }, + openGraph: { + title: "Koyla Kings | Premium Halal Pakistani Indian Chinese BBQ", + description: "Experience fire-cooked excellence. Authentic Pakistani, Indian, Chinese & BBQ cuisine. 100% Halal Certified. Mount Druitt NSW.", + url: "https://koylakings.com.au", + siteName: "Koyla Kings", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-cooked-bell-peppers-with-ground-meat-different-seasonings-dark-grey-surface-meal-dolma-food-vegetables-beef-meat_140725-74543.jpg", + alt: "Koyla Kings BBQ Karahi - Premium Halal Cuisine", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Koyla Kings | Halal Pakistani Indian Chinese BBQ", + description: "Fire-cooked premium halal cuisine in Mount Druitt. Open 3PM-12AM daily.", + images: ["http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}