Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-16 09:47:11 +00:00
5 changed files with 62 additions and 23 deletions

View File

@@ -128,7 +128,7 @@ export default function AboutPage() {
descriptions: [
"Our culinary heritage spans generations. Each recipe is carefully preserved and executed with precision, honoring the traditions of South Asian cuisine while meeting the highest standards of French fine dining.",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-variety-oriental-spices_23-2148294999.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-variety-oriental-spices_23-2148294999.jpg?_wi=2",
imageAlt: "spices herbs traditional cooking ingredients",
},
{
@@ -137,7 +137,7 @@ export default function AboutPage() {
descriptions: [
"We source the finest spices, fresh produce, and premium proteins from trusted suppliers. Every ingredient is selected for quality, flavor, and sustainability, ensuring excellence in every dish.",
],
imageSrc: "http://img.b2bpic.net/free-photo/black-tomatoes-female-hands-closeup-cooking-kitchen_169016-39507.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-tomatoes-female-hands-closeup-cooking-kitchen_169016-39507.jpg?_wi=2",
imageAlt: "fresh organic vegetables ingredients market",
},
{
@@ -146,7 +146,7 @@ export default function AboutPage() {
descriptions: [
"Hospitality is at the heart of South Asian culture. Our team treats every guest as family, ensuring your dining experience is comfortable, welcoming, and unforgettable from arrival to departure.",
],
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-using-nfc-technology_23-2149893759.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-using-nfc-technology_23-2149893759.jpg?_wi=2",
imageAlt: "restaurant staff hospitality service welcoming",
},
]}

View File

@@ -96,21 +96,21 @@ export default function GalleryPage() {
id: "butter-chicken",
name: "Butter Chicken Tandoori",
price: "€28",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-slices-with-mushed-potatoes-seasonings-wooden-desk-meat-bread-meal-potato-food-dish_140725-96621.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-slices-with-mushed-potatoes-seasonings-wooden-desk-meat-bread-meal-potato-food-dish_140725-96621.jpg?_wi=3",
imageAlt: "butter chicken tandoori Indian cuisine plated",
},
{
id: "biryani-royal",
name: "Royal Biryani",
price: "€32",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grated-carrot-salad-with-garlic-walnuts-seasonings-dark-blue-rustic-desk-health-vegetable-diet-ripe-salad-color_140725-121253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grated-carrot-salad-with-garlic-walnuts-seasonings-dark-blue-rustic-desk-health-vegetable-diet-ripe-salad-color_140725-121253.jpg?_wi=3",
imageAlt: "biryani rice dish Indian cuisine fragrant",
},
{
id: "tandoori-salmon",
name: "Tandoori Salmon",
price: "€35",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-salmon-fillets-ice-with-rosemary-spices_84443-74003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-salmon-fillets-ice-with-rosemary-spices_84443-74003.jpg?_wi=3",
imageAlt: "tandoori salmon fish grilled spiced plated",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Sohana - Authentic South Asian Fine Dining in Paris, France",
description: "Experience premium South Asian cuisine at Sohana in Paris. Authentic flavors, traditional recipes, and exceptional hospitality. Reserve your table today.",
keywords: "South Asian restaurant Paris, fine dining France, Indian cuisine, authentic South Asian, premium restaurant, Tandoori, Biryani",
metadataBase: new URL("https://sohana.fr"),
alternates: {
canonical: "https://sohana.fr",
},
openGraph: {
title: "Sohana - Authentic South Asian Fine Dining",
description: "Experience the warmth of traditional South Asian cuisine elevated to fine dining excellence at Sohana in Paris.",
url: "https://sohana.fr",
siteName: "Sohana Restaurant",
images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157779.jpg",
alt: "Sohana fine dining restaurant interior",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Sohana - South Asian Fine Dining in Paris",
description: "Discover authentic South Asian cuisine at Sohana. Premium ingredients, traditional recipes, warm hospitality.",
images: ["http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157779.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={`${nunitoSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -97,19 +97,19 @@ export default function MenuPage() {
id: "butter-chicken",
name: "Butter Chicken Tandoori",
price: "€28",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-slices-with-mushed-potatoes-seasonings-wooden-desk-meat-bread-meal-potato-food-dish_140725-96621.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-slices-with-mushed-potatoes-seasonings-wooden-desk-meat-bread-meal-potato-food-dish_140725-96621.jpg?_wi=2",
},
{
id: "biryani-royal",
name: "Royal Biryani",
price: "€32",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grated-carrot-salad-with-garlic-walnuts-seasonings-dark-blue-rustic-desk-health-vegetable-diet-ripe-salad-color_140725-121253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grated-carrot-salad-with-garlic-walnuts-seasonings-dark-blue-rustic-desk-health-vegetable-diet-ripe-salad-color_140725-121253.jpg?_wi=2",
},
{
id: "tandoori-salmon",
name: "Tandoori Salmon",
price: "€35",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-salmon-fillets-ice-with-rosemary-spices_84443-74003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-salmon-fillets-ice-with-rosemary-spices_84443-74003.jpg?_wi=2",
},
]}
/>

View File

@@ -190,7 +190,7 @@ export default function HomePage() {
descriptions: [
"Our culinary heritage spans generations. Each recipe is carefully preserved and executed with precision, honoring the traditions of South Asian cuisine while meeting the highest standards of French fine dining.",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-variety-oriental-spices_23-2148294999.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-variety-oriental-spices_23-2148294999.jpg?_wi=1",
},
{
id: "fresh-ingredients",
@@ -198,7 +198,7 @@ export default function HomePage() {
descriptions: [
"We source the finest spices, fresh produce, and premium proteins from trusted suppliers. Every ingredient is selected for quality, flavor, and sustainability, ensuring excellence in every dish.",
],
imageSrc: "http://img.b2bpic.net/free-photo/black-tomatoes-female-hands-closeup-cooking-kitchen_169016-39507.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-tomatoes-female-hands-closeup-cooking-kitchen_169016-39507.jpg?_wi=1",
},
{
id: "warm-hospitality",
@@ -206,7 +206,7 @@ export default function HomePage() {
descriptions: [
"Hospitality is at the heart of South Asian culture. Our team treats every guest as family, ensuring your dining experience is comfortable, welcoming, and unforgettable from arrival to departure.",
],
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-using-nfc-technology_23-2149893759.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/person-paying-using-nfc-technology_23-2149893759.jpg?_wi=1",
},
]}
/>
@@ -228,19 +228,19 @@ export default function HomePage() {
id: "butter-chicken",
name: "Butter Chicken Tandoori",
price: "€28",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-slices-with-mushed-potatoes-seasonings-wooden-desk-meat-bread-meal-potato-food-dish_140725-96621.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-slices-with-mushed-potatoes-seasonings-wooden-desk-meat-bread-meal-potato-food-dish_140725-96621.jpg?_wi=1",
},
{
id: "biryani-royal",
name: "Royal Biryani",
price: "€32",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grated-carrot-salad-with-garlic-walnuts-seasonings-dark-blue-rustic-desk-health-vegetable-diet-ripe-salad-color_140725-121253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-grated-carrot-salad-with-garlic-walnuts-seasonings-dark-blue-rustic-desk-health-vegetable-diet-ripe-salad-color_140725-121253.jpg?_wi=1",
},
{
id: "tandoori-salmon",
name: "Tandoori Salmon",
price: "€35",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-salmon-fillets-ice-with-rosemary-spices_84443-74003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-salmon-fillets-ice-with-rosemary-spices_84443-74003.jpg?_wi=1",
},
]}
/>