Merge version_2 into main #4
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "JerryBites - Premium Fine Dining Restaurant in Karachi", description: "Experience luxury dining at JerryBites. Premium cuisine, elegant ambiance, and exceptional service. Reserve your table or order online today.", keywords: "fine dining, luxury restaurant, premium cuisine, Karachi restaurant, gourmet food, reservation, delivery", metadataBase: new URL("https://jerrybites.com"),
|
||||
alternates: {
|
||||
canonical: "https://jerrybites.com"},
|
||||
openGraph: {
|
||||
title: "JerryBites - Luxury Dining Experience", description: "Taste perfection at JerryBites. Premium cuisine crafted with passion in an elegant atmosphere.", url: "https://jerrybites.com", siteName: "JerryBites Restaurant", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg", alt: "JerryBites Restaurant Dining Experience"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "JerryBites - Premium Fine Dining", description: "Experience luxury dining. Reserve your table or order online.", images: ["http://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "JerryBites Restaurant - Luxury Dining Experience", description: "Experience premium cuisine crafted with passion at JerryBites Restaurant in Karachi."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -212,7 +212,7 @@ export default function LandingPage() {
|
||||
description="Find answers to common questions about our restaurant, ordering, and dining experience."
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are your operating hours?", content: "We are open Monday to Sunday from 12:00 PM to 11:00 PM. Special hours apply on holidays. Call ahead to confirm availability for special events."
|
||||
id: "1", title: "What are your operating hours?", content: "Open Monday–Sunday, 12:00 PM–11:00 PM."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Do you offer delivery and pickup services?", content: "Yes! We offer both delivery and pickup services in Karachi and nearby areas. You can order through our website or call us at 03453956208 for fast service."
|
||||
|
||||
Reference in New Issue
Block a user