Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-15 07:54:26 +00:00
5 changed files with 67 additions and 28 deletions

View File

@@ -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}

View File

@@ -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",
},
{

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -83,7 +83,7 @@ export default function MenuPage() {
},
]}
buttonAnimation="slide-up"
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=1"
imageAlt="Fine dining table setting at SALT"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -100,28 +100,28 @@ export default function MenuPage() {
id: "bhekti-chilli",
name: "Bhekti Chilli Fish",
price: "₹550",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-savory-eggplant-rolls-cooked-dish-with-lemon-slices-dark-desk-dinner-cooking-meal-citrus-oil-dish_140725-102029.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-savory-eggplant-rolls-cooked-dish-with-lemon-slices-dark-desk-dinner-cooking-meal-citrus-oil-dish_140725-102029.jpg?_wi=2",
imageAlt: "Bhekti Chilli Fish - Guest Favourite",
},
{
id: "melting-mushroom",
name: "Melting Mushroom",
price: "₹480",
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-white-meat-green-herbs_114579-3069.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-white-meat-green-herbs_114579-3069.jpg?_wi=2",
imageAlt: "Melting Mushroom - Rich and Indulgent",
},
{
id: "thai-curry",
name: "Thai Curry Special",
price: "₹520",
imageSrc: "http://img.b2bpic.net/free-photo/green-curry-made-with-chicken-chili-basil-with-tomato-lime-kaffir-lime-leaves-garlic_1150-25740.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/green-curry-made-with-chicken-chili-basil-with-tomato-lime-kaffir-lime-leaves-garlic_1150-25740.jpg?_wi=2",
imageAlt: "Thai Curry Special - Authentic Flavours",
},
{
id: "starters",
name: "Signature Starters",
price: "₹350",
imageSrc: "http://img.b2bpic.net/free-photo/appetizing-pancakes-decorated-with-berries-flowers_169016-22969.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/appetizing-pancakes-decorated-with-berries-flowers_169016-22969.jpg?_wi=2",
imageAlt: "Signature Starters - Crowd Favourites",
},
]}

View File

@@ -124,7 +124,7 @@ export default function HomePage() {
name: "Bhekti Chilli Fish",
price: "₹550",
imageSrc:
"http://img.b2bpic.net/free-photo/top-view-savory-eggplant-rolls-cooked-dish-with-lemon-slices-dark-desk-dinner-cooking-meal-citrus-oil-dish_140725-102029.jpg",
"http://img.b2bpic.net/free-photo/top-view-savory-eggplant-rolls-cooked-dish-with-lemon-slices-dark-desk-dinner-cooking-meal-citrus-oil-dish_140725-102029.jpg?_wi=1",
imageAlt: "Bhekti Chilli Fish - Guest Favourite",
},
{
@@ -132,7 +132,7 @@ export default function HomePage() {
name: "Melting Mushroom",
price: "₹480",
imageSrc:
"http://img.b2bpic.net/free-photo/salad-with-white-meat-green-herbs_114579-3069.jpg",
"http://img.b2bpic.net/free-photo/salad-with-white-meat-green-herbs_114579-3069.jpg?_wi=1",
imageAlt: "Melting Mushroom - Rich and Indulgent",
},
{
@@ -140,7 +140,7 @@ export default function HomePage() {
name: "Thai Curry Special",
price: "₹520",
imageSrc:
"http://img.b2bpic.net/free-photo/green-curry-made-with-chicken-chili-basil-with-tomato-lime-kaffir-lime-leaves-garlic_1150-25740.jpg",
"http://img.b2bpic.net/free-photo/green-curry-made-with-chicken-chili-basil-with-tomato-lime-kaffir-lime-leaves-garlic_1150-25740.jpg?_wi=1",
imageAlt: "Thai Curry Special - Authentic Flavours",
},
{
@@ -148,7 +148,7 @@ export default function HomePage() {
name: "Signature Starters",
price: "₹350",
imageSrc:
"http://img.b2bpic.net/free-photo/appetizing-pancakes-decorated-with-berries-flowers_169016-22969.jpg",
"http://img.b2bpic.net/free-photo/appetizing-pancakes-decorated-with-berries-flowers_169016-22969.jpg?_wi=1",
imageAlt: "Signature Starters - Crowd Favourites",
},
]}
@@ -169,7 +169,7 @@ export default function HomePage() {
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=1"
imageAlt="SALT Restaurant Founder - Culinary Excellence"
mediaAnimation="blur-reveal"
useInvertedBackground={true}
@@ -188,7 +188,7 @@ export default function HomePage() {
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",
"http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg?_wi=1",
imageAlt: "Sarah Johnson",
},
{
@@ -198,7 +198,7 @@ export default function HomePage() {
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",
"http://img.b2bpic.net/free-photo/close-up-woman-wearing-glasses_23-2148815602.jpg?_wi=1",
imageAlt: "Michael Chen",
},
{
@@ -208,7 +208,7 @@ export default function HomePage() {
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",
"http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg?_wi=1",
imageAlt: "Emily Rodriguez",
},
{
@@ -218,7 +218,7 @@ export default function HomePage() {
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",
"http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg?_wi=1",
imageAlt: "David Kim",
},
]}