Merge version_2 into main #5
@@ -1,51 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito } 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";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", 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: "Foodie - Premium Fine Dining Restaurant", description: "Experience exceptional farm-to-table cuisine at Foodie. Award-winning chefs, seasonal menus, and unforgettable dining moments. Reserve your table today.", keywords: "restaurant, fine dining, farm to table, chef, cuisine, reservations", openGraph: {
|
||||
title: "Foodie - Premium Fine Dining", description: "Award-winning restaurant offering exceptional culinary experiences with fresh, seasonal ingredients.", siteName: "Foodie", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", alt: "Foodie restaurant signature dish"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Foodie Restaurant", description: "Experience premium farm-to-table dining", images: ["http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg"]
|
||||
}
|
||||
};
|
||||
title: "Foodie - Premium Restaurant", description: "Discover culinary excellence at Foodie, where fresh ingredients meet innovative cooking techniques."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunito.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -164,7 +164,7 @@ export default function LandingPage() {
|
||||
id: "6", name: "Jessica Martinez", imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=6", imageAlt: "Jessica Martinez"
|
||||
}
|
||||
]}
|
||||
cardTitle="Over 5,000 guests have experienced unforgettable moments at Foodie"
|
||||
cardTitle="Join 5,000+ diners who've discovered exceptional cuisine at Foodie"
|
||||
cardTag="Trusted by Food Lovers"
|
||||
cardTagIcon={Heart}
|
||||
cardAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user