diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3c0ce1c..d2d87ab 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -25,7 +25,7 @@ export default function AboutPage() { name: "Sarah Johnson", role: "Frequent Guest", testimonial: "The ambience is warm and inviting and the food is exceptional. Perfect for our anniversary celebration.", - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg?_wi=2", imageAlt: "Sarah Johnson", }, { @@ -33,7 +33,7 @@ export default function AboutPage() { name: "Michael Chen", role: "Business Owner", testimonial: "Amazing place to dine. Staff were courteous and attentive. I've brought clients here multiple times.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-wearing-glasses_23-2148815602.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-wearing-glasses_23-2148815602.jpg?_wi=2", imageAlt: "Michael Chen", }, { @@ -41,7 +41,7 @@ export default function AboutPage() { name: "Emily Rodriguez", role: "Food Blogger", testimonial: "Delicious food with beautiful presentation. Every dish is a work of art. Highly recommended!", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg?_wi=2", imageAlt: "Emily Rodriguez", }, { @@ -49,7 +49,7 @@ export default function AboutPage() { name: "David Kim", role: "Regular Diner", testimonial: "Definitely one of the best new restaurants in town. The chef's specials are outstanding and worth every rupee.", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg?_wi=2", imageAlt: "David Kim", }, ]; @@ -113,7 +113,7 @@ export default function AboutPage() { description="Inspired by the simple yet powerful ingredient that brings every flavour to life — SALT." subdescription="Our restaurant was created to offer a fine dining experience in Siliguri where guests enjoy incredible food, warm hospitality, and a beautiful ambience perfect for special moments. Whether it's a romantic dinner, family gathering, or celebration, every visit is designed to be memorable." icon={Sparkles} - imageSrc="http://img.b2bpic.net/free-photo/confident-young-male-cook-wearing-chef-uniform-crosing-hands-isolated-white-wall-with-copy-space_141793-36394.jpg" + imageSrc="http://img.b2bpic.net/free-photo/confident-young-male-cook-wearing-chef-uniform-crosing-hands-isolated-white-wall-with-copy-space_141793-36394.jpg?_wi=2" imageAlt="SALT Restaurant Founder - Culinary Excellence" mediaAnimation="blur-reveal" useInvertedBackground={true} diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 3d4f3ae..d1747a9 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -24,7 +24,7 @@ export default function GalleryPage() { id: "interior-1", name: "Elegant Dining Room", price: "Experience", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-high-glass-candlestick-table-near-christmas-decoration-new-year-eve-concept_132075-11262.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-high-glass-candlestick-table-near-christmas-decoration-new-year-eve-concept_132075-11262.jpg?_wi=2", imageAlt: "Luxury restaurant interior design elegant decor", }, { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..32550fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "SALT Restaurant - Fine Dining in Siliguri", + description: "Experience elegant fine dining at SALT Restaurant in Siliguri. Romantic ambience, exquisite cuisine, and exceptional service. Reserve your table today.", + keywords: "fine dining restaurant Siliguri, romantic dinner, upscale restaurant, fusion cuisine, table reservation", + metadataBase: new URL("https://www.saltrestaurant.com"), + alternates: { + canonical: "https://www.saltrestaurant.com", + }, + openGraph: { + title: "SALT Restaurant - Where Flavor Meets Elegance", + description: "Discover exceptional fine dining at SALT Restaurant in Siliguri with romantic ambience and chef-curated cuisine.", + url: "https://www.saltrestaurant.com", + siteName: "SALT Restaurant", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892961.jpg", + alt: "SALT Restaurant - Luxury Fine Dining", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "SALT Restaurant - Fine Dining Experience", + description: "Elegant fine dining in Siliguri. Romantic ambience, exceptional cuisine, warm hospitality.", + images: ["http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892961.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}