Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 390c54ae82 | |||
| a9c45ed84f | |||
| 947234dc10 | |||
| bd606d7c4e | |||
| 376e8e9198 | |||
| 3f2b8c1228 | |||
| 04c5dea24b | |||
| 51ea162e6b | |||
| a9af9f1b23 | |||
| 6ade475bed |
165
src/app/about/page.tsx
Normal file
165
src/app/about/page.tsx
Normal file
@@ -0,0 +1,165 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Sparkles, Users, Award, MapPin } from 'lucide-react';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="large"
|
||||
background="circleGradient"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="NH-27 Kitchen"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reserve", id: "contact" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Open Daily"
|
||||
bottomRightText="+91 82497 40795"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricSplitMediaAbout
|
||||
tag="Our Story"
|
||||
tagIcon={Sparkles}
|
||||
title="NH-27 Kitchen: A Highway Gem"
|
||||
description="Since opening our doors, NH-27 Kitchen has become the trusted dining destination for travelers, families, and locals alike. We're committed to serving authentic North Indian cuisine with the freshest ingredients, generous portions, and warm hospitality that keeps our customers coming back."
|
||||
metrics={[
|
||||
{ value: "4.2/5", title: "Customer Rating" },
|
||||
{ value: "415+", title: "Happy Customers" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-with-phone_23-2149104446.jpg?_wi=1"
|
||||
imageAlt="NH-27 Kitchen Team"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ambience" data-section="ambience">
|
||||
<FeatureCardThree
|
||||
title="What Makes Us Special"
|
||||
description="Discover the values and qualities that set NH-27 Kitchen apart from other dining establishments."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "Authentic North Indian Cuisine", description: "Our chefs prepare traditional North Indian dishes using time-honored recipes and the finest fresh ingredients sourced daily.", imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-delicious-fried-chicken-with-different-seasonings-dark-space_140725-79530.jpg?_wi=1", imageAlt: "Authentic North Indian Food"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Commitment to Quality", description: "Every dish is crafted with care and attention to detail. We maintain consistent quality in taste, presentation, and hygiene.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-donut_23-2148773568.jpg?_wi=1", imageAlt: "Quality Preparation"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Warm Hospitality", description: "Our friendly and professional staff treat every guest with respect and warmth, ensuring a memorable dining experience.", imageSrc: "http://img.b2bpic.net/free-photo/group-girlfriends-sitting-table-together-celebrating-birthday-outdoor-park_613910-19989.jpg?_wi=1", imageAlt: "Welcoming Atmosphere"
|
||||
},
|
||||
{
|
||||
id: "04", title: "Affordable Excellence", description: "We believe quality food shouldn't come with a premium price tag. We offer exceptional value for every rupee spent.", imageSrc: "http://img.b2bpic.net/free-photo/salad-wooden-platter-with-chopped-ingredients-herbs_114579-70216.jpg?_wi=1", imageAlt: "Value for Money"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="Why Customers Love NH-27 Kitchen"
|
||||
description="Real stories from our valued guests who've experienced our hospitality firsthand."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Rajesh Kumar, Highway Traveler", date: "Date: 15 January 2025", title: "Best Stop on NH-27!", quote: "I travel this highway frequently, and NH-27 Kitchen is now my favorite stop. The food quality is exceptional, portions are generous, and the staff is incredibly friendly. Highly recommended to all travelers!", tag: "Excellent Service", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-donut_23-2148773568.jpg?_wi=3"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Priya Sharma, Local Family", date: "Date: 18 December 2024", title: "Perfect for Family Time", quote: "We love bringing our kids here! The momos are their favorite, and my husband can't get enough of the biryani. The staff always makes us feel welcome. We've made it our weekend tradition!", tag: "Family Friendly", avatarSrc: "http://img.b2bpic.net/free-photo/teen-with-big-smile-showing-positive-gesture_1149-940.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-cabbage-dolma-consists-ground-meat-with-greens-white-background-meat-dinner-calorie-oil-food-dish_140725-96160.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Amit Patel, IOCL Worker", date: "Date: 10 December 2024", title: "Great Lunch Spot", quote: "Working nearby, I visit NH-27 Kitchen 2-3 times a week. Quick service, authentic flavors, and affordable prices. The noodles and rolls are my go-to. Really appreciate the quality they maintain consistently.", tag: "Quick Service", avatarSrc: "http://img.b2bpic.net/free-photo/confident-woman-standing-with-arms-crossed_107420-95955.jpg", imageSrc: "http://img.b2bpic.net/free-photo/traditional-italian-pasta-with-mushrooms-parmesan-slices-oregano-leaves-granite-bowl_114579-1832.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Sneha Dutta, Friends Hangout", date: "Date: 05 December 2024", title: "Great Hangout Spot", quote: "Our friend group discovered this place last month, and we absolutely love it! Good food, relaxed atmosphere, and it doesn't burn a hole in your pocket. We come here every weekend now!", tag: "Social Hub", avatarSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman-smiling-looking-camera-successful-confident-grey-haired-manager-sitting-office-room-workplace-business-management-concept_74855-7343.jpg", imageSrc: "http://img.b2bpic.net/free-photo/group-girlfriends-sitting-table-together-celebrating-birthday-outdoor-park_613910-19989.jpg?_wi=3"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Vikram Singh, Student", date: "Date: 28 November 2024", title: "Affordable Quality Food", quote: "As a student, I really appreciate the value for money here. Great taste, big portions, and student-friendly prices. The chicken rolls are my weakness, and I keep coming back!", tag: "Budget Friendly", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg", imageSrc: "http://img.b2bpic.net/free-photo/sponge-rollcake-with-chocolate-filling-wooden-board_114579-17470.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Meera Goswami, Tourist", date: "Date: 20 November 2024", title: "Authentic North Indian Flavors", quote: "Passing through Bongaigaon, we stopped here on a recommendation and weren't disappointed. Authentic North Indian food, friendly staff, and a lovely atmosphere. Perfect introduction to local cuisine!", tag: "Authentic", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-holding-camera-while-standing-against-red-background-high-quality-photo_114579-60916.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-delicious-fried-chicken-with-different-seasonings-dark-space_140725-79530.jpg?_wi=2"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Visit NH-27 Kitchen Today"
|
||||
description="Come experience our warm hospitality and authentic North Indian cuisine. We're open daily and ready to serve you."
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-with-phone_23-2149104446.jpg?_wi=2"
|
||||
imageAlt="NH-27 Kitchen Restaurant"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell us about your visit or ask any questions", rows: 4,
|
||||
required: false
|
||||
}}
|
||||
buttonText="Send Message"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="NH-27 Kitchen"
|
||||
copyrightText="© 2025 NH-27 Kitchen | Bongaigaon, Assam"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Reserve Table", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Location", items: [
|
||||
{ label: "Ward No. 3, Opposite Gate No. 5 IOCL Refinery", href: "#" },
|
||||
{ label: "Kukurmari, Bongaigaon", href: "#" },
|
||||
{ label: "Assam 783385, India", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Hours", items: [
|
||||
{ label: "Open Daily", href: "#" },
|
||||
{ label: "Closes at 10:00 PM", href: "#" },
|
||||
{ label: "Call: +91 82497 40795", href: "tel:+918249740795" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -29,9 +29,9 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="NH-27 Kitchen"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Reserve", id: "contact" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
@@ -111,7 +111,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "4", brand: "Chinese", name: "Gobi Manchurian Combo", price: "₹160", rating: 5,
|
||||
reviewCount: "68", imageSrc: "http://img.b2bpic.net/free-photo/salad-wooden-platter-with-chopped-ingredients-herbs_114579-70216.jpg", imageAlt: "Gobi Manchurian Combo"
|
||||
reviewCount: "68", imageSrc: "http://img.b2bpic.net/free-photo/salad-wooden-platter-with-chopped-ingredients-herbs_114579-70216.jpg?_wi=2", imageAlt: "Gobi Manchurian Combo"
|
||||
},
|
||||
{
|
||||
id: "5", brand: "Tibetan", name: "Chicken Momo", price: "₹150", rating: 5,
|
||||
@@ -190,6 +190,7 @@ export default function LandingPage() {
|
||||
mediaPosition="right"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "your.email@example.com", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "+91 XXXXX XXXXX", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
@@ -207,8 +208,8 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Call Now", href: "tel:+918249740795" },
|
||||
{ label: "Get Directions", href: "https://maps.google.com/?q=NH-27+Kitchen+Bongaigaon" },
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Reserve Table", href: "#contact" }
|
||||
]
|
||||
},
|
||||
@@ -231,4 +232,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user