Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -72,7 +72,7 @@ export default function MenuPage() {
|
||||
"Authentic biryani, karahi, and tandoori specialties crafted with traditional spices",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/fried-meat-with-greens-saffron-boiled-rice_140725-2103.jpg",
|
||||
"http://img.b2bpic.net/free-photo/fried-meat-with-greens-saffron-boiled-rice_140725-2103.jpg?_wi=2",
|
||||
imageAlt: "biryani karahi curry traditional Pakistani",
|
||||
},
|
||||
{
|
||||
@@ -82,7 +82,7 @@ export default function MenuPage() {
|
||||
"Vibrant curries, naan breads, and regional delicacies from across India",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086078.jpg",
|
||||
"http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086078.jpg?_wi=2",
|
||||
imageAlt: "Indian curry naan rice spiced authentic",
|
||||
},
|
||||
{
|
||||
@@ -92,7 +92,7 @@ export default function MenuPage() {
|
||||
"Wok-fired noodles, fried rice, and stir-fried dishes with premium halal ingredients",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/fried-noodles-plate_1339-2153.jpg",
|
||||
"http://img.b2bpic.net/free-photo/fried-noodles-plate_1339-2153.jpg?_wi=1",
|
||||
imageAlt: "Chinese food stir fry noodles rice",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -190,21 +190,21 @@ export default function OffersPage() {
|
||||
name: "Ahmed Hassan",
|
||||
role: "Regular Customer",
|
||||
testimonial: "The combo special is incredible value! Premium quality food at such a great price. I order it every Friday.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Priya Sharma",
|
||||
role: "Family Dinners",
|
||||
testimonial: "We tried the group feast last month for a celebration. The variety and quality was outstanding for the price!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Michael Chen",
|
||||
role: "Office Groups",
|
||||
testimonial: "The early bird special has become our go-to. Fresh, delicious, and affordable. Perfect for team lunch outings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-noodles-plate_1339-2153.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-noodles-plate_1339-2153.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -229,7 +229,7 @@ export default function OffersPage() {
|
||||
}}
|
||||
buttonText="Send Inquiry"
|
||||
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=4"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
||||
"Best halal BBQ in Mount Druitt. The karahi is absolutely fire!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg?_wi=1",
|
||||
imageAlt: "gourmet restaurant plating dark moody",
|
||||
},
|
||||
{
|
||||
@@ -114,7 +114,7 @@ export default function HomePage() {
|
||||
"Authentic flavors, premium quality, and excellent service. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg",
|
||||
"http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg?_wi=1",
|
||||
imageAlt: "Indian Pakistani food plating restaurant",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function HomePage() {
|
||||
"The fusion of cuisines is perfect. Every visit is a celebration of fire and flavor.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/man-hands-decorating-table-with-fir-tree-branch_23-2147969387.jpg",
|
||||
"http://img.b2bpic.net/free-photo/man-hands-decorating-table-with-fir-tree-branch_23-2147969387.jpg?_wi=1",
|
||||
imageAlt: "BBQ grilled meat restaurant plating",
|
||||
},
|
||||
{
|
||||
@@ -134,7 +134,7 @@ export default function HomePage() {
|
||||
"Perfect for family dinners. Open late, great for post-movie gathering!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/chicken-stuffed-with-meat_140725-9373.jpg",
|
||||
"http://img.b2bpic.net/free-photo/chicken-stuffed-with-meat_140725-9373.jpg?_wi=1",
|
||||
imageAlt: "premium dark restaurant interior moody",
|
||||
},
|
||||
]}
|
||||
@@ -317,7 +317,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Best halal BBQ in Mount Druitt. The karahi is absolutely fire! Been coming here every Friday.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg?_wi=2",
|
||||
imageAlt: "gourmet restaurant plating dark moody",
|
||||
},
|
||||
{
|
||||
@@ -327,7 +327,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Authentic flavors, premium quality ingredients, and excellent service. This is what premium halal dining should be.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg",
|
||||
"http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg?_wi=2",
|
||||
imageAlt: "Indian Pakistani food plating restaurant",
|
||||
},
|
||||
{
|
||||
@@ -337,7 +337,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"The fusion of cuisines is perfect. Every visit is a celebration of fire and flavor. Highly recommend for groups.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/man-hands-decorating-table-with-fir-tree-branch_23-2147969387.jpg",
|
||||
"http://img.b2bpic.net/free-photo/man-hands-decorating-table-with-fir-tree-branch_23-2147969387.jpg?_wi=2",
|
||||
imageAlt: "BBQ grilled meat restaurant plating",
|
||||
},
|
||||
{
|
||||
@@ -347,7 +347,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Perfect for family dinners. Open late, great ambiance, and the kids love the variety. Our new favorite spot!",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/chicken-stuffed-with-meat_140725-9373.jpg",
|
||||
"http://img.b2bpic.net/free-photo/chicken-stuffed-with-meat_140725-9373.jpg?_wi=2",
|
||||
imageAlt: "premium dark restaurant interior moody",
|
||||
},
|
||||
{
|
||||
@@ -357,7 +357,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Hosted a corporate event here last month. The food was incredible and the team was very accommodating.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/fried-meat-with-greens-saffron-boiled-rice_140725-2103.jpg",
|
||||
"http://img.b2bpic.net/free-photo/fried-meat-with-greens-saffron-boiled-rice_140725-2103.jpg?_wi=1",
|
||||
imageAlt: "biryani karahi curry traditional Pakistani",
|
||||
},
|
||||
{
|
||||
@@ -367,7 +367,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Finally a restaurant that takes halal certification seriously. The quality and authenticity are unmatched!",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086078.jpg",
|
||||
"http://img.b2bpic.net/free-photo/nutritious-indian-dosa-assortment_23-2149086078.jpg?_wi=1",
|
||||
imageAlt: "Indian curry naan rice spiced authentic",
|
||||
},
|
||||
]}
|
||||
@@ -404,7 +404,7 @@ export default function HomePage() {
|
||||
}}
|
||||
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=3"
|
||||
imageAlt="premium dark restaurant interior moody"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
|
||||
@@ -95,7 +95,7 @@ export default function ReservePage() {
|
||||
}}
|
||||
buttonText="Request Reservation"
|
||||
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=5"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -142,21 +142,21 @@ export default function ReservePage() {
|
||||
name: "Sarah Khan",
|
||||
role: "Family Events",
|
||||
testimonial: "Hosted my family dinner here last month. The team made us feel so welcome and the food was absolutely spectacular!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-food-frame-with-copy-space_23-2148747627.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rajesh Patel",
|
||||
role: "Corporate Events",
|
||||
testimonial: "Organized a corporate dinner for 20 people. The service was impeccable and guests are still talking about the incredible food.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-greens-saffron-boiled-rice_140725-2103.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-greens-saffron-boiled-rice_140725-2103.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Fatima Ali",
|
||||
role: "Celebration Dinner",
|
||||
testimonial: "Reserved a table for our engagement celebration. The ambiance was perfect and every detail was carefully thought out.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indian-meal-with-rice-sari_23-2148747624.jpg?_wi=4",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user