import type { Metadata } from "next";
import HomeScreen from "./components/screen/homescreen/HomeScreen";
import { Suspense } from "react";
import Loading from "./components/common/Loading";

// ✅ SEO Meta Tags for Home Page
export const metadata: Metadata = {
  title: "Kulcha King Dubai | Authentic North Indian Restaurant | HJ Group",
  description:
    "Discover Kulcha King, Dubai’s homegrown North Indian restaurant brand, famous for Amritsari kulchas, curries and grills. Dine in, takeaway or order online across Dubai & Sharjah.",
  keywords: [
    "Kulcha King",
    " kulcha Dubai",
    "Punjabi food Dubai",
    "North Indian restaurant Dubai",
    "Amritsari kulcha UAE",
    "Indian restaurant Karama",
    "Indian food delivery Dubai",
    "HJ Kulcha King",
    "HJ Investments",
    " HJ Group"


  ],
  openGraph: {
    title: "Kulcha King | Authentic  Kulchas",
    description:
      "Taste the royal flavor of Punjab — crispy, buttery, stuffed Kulchas made fresh daily. Visit Kulcha King for an authentic Punjabi experience.",
    url: "https://kulchaking.com",
    siteName: "Kulcha King",
    images: [
      {
        url: "/og-image.jpg",
        width: 1200,
        height: 630,
        alt: "Kulcha King Restaurant",
      },
    ],
    locale: "en_IN",
    type: "website",
  },
  twitter: {
    card: "summary_large_image",
    title: "Kulcha King | Authentic  Kulchas",
    description:
      "Enjoy authentic  Kulchas and royal Punjabi flavors at Kulcha King — freshly made and served hot daily!",
    images: ["/og-image.jpg"],
  },
  alternates: {
    canonical: "https://kulchaking.com",
  },
};

// ✅ JSON-LD Schema for Home Page
function HomePageSchema() {
  const schema = {
    "@context": "https://schema.org",
    "@type": "Restaurant",
    name: "Kulcha King",
    description:
      "Kulcha King serves authentic  Kulchas and Punjabi food in India. Experience the royal taste of Punjab with fresh, crispy, and buttery kulchas.",
    image: "https://kulchaking.com/og-image.jpg",
    logo: "https://kulchaking.com/favicon.svg",
    url: "https://kulchaking.com",
    telephone: "+91 98765 43210",
    address: {
      
      "@type": "PostalAddress",
      streetAddress: "123 Kulcha Street, Food Plaza",
      addressLocality: "New Delhi",
      addressCountry: "IN",
      postalCode: "110001",
    },
    servesCuisine: ["Punjabi", "North Indian", ],
    priceRange: "₹₹",
    openingHoursSpecification: [
      {
        "@type": "OpeningHoursSpecification",
        dayOfWeek: [
          "Monday",
          "Tuesday",
          "Wednesday",
          "Thursday",
          "Friday",
          "Saturday",
          "Sunday",
        ],
        opens: "11:00",
        closes: "23:00",
      },
    ],
    sameAs: [
      "https://www.facebook.com/kulchaking",
      "https://www.instagram.com/kulchaking",
      "https://maps.google.com/?q=Kulcha+King",
    ],
  };

  return (
    <script
      type="application/ld+json"
      dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }}
    />
  );
}

// ✅ Page Component
export default function Home() {
  return (
    <>
      <HomePageSchema />
      <Suspense fallback={<Loading/>}>
      <HomeScreen />
      </Suspense>
    </>
  );
}
