diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index af80199..2bdc642 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", }, ]} diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index c386595..0f4a5e6 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -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", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..0955951 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}