diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index c1242c5..4d1ec32 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -11,17 +11,16 @@ import { UtensilsCrossed, Leaf, Heart, Star } from "lucide-react";
export default function AboutPage() {
const navItems = [
- { name: "Home", id: "home" },
- { name: "About", id: "about" },
- { name: "Menu", id: "menu" },
+ { name: "Home", id: "/" },
+ { name: "About", id: "/about" },
+ { name: "Menu", id: "/menu" },
{ name: "Reviews", id: "testimonials" },
- { name: "Contact", id: "contact" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Location & Hours",
- items: [
+ title: "Location & Hours", items: [
{ label: "Hyderguda-Basheerbagh Rd", href: "#" },
{ label: "Basheer Bagh, Hyderabad", href: "#" },
{ label: "Open: 7:00 AM - 1:00 AM", href: "#" },
@@ -29,18 +28,16 @@ export default function AboutPage() {
],
},
{
- title: "Quick Links",
- items: [
+ title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
- { label: "Menu", href: "#menu" },
+ { label: "Menu", href: "/menu" },
{ label: "Reviews", href: "#testimonials" },
- { label: "Contact", href: "#contact" },
+ { label: "Contact", href: "/contact" },
],
},
{
- title: "Order Online",
- items: [
+ title: "Order Online", items: [
{ label: "Order via Swiggy", href: "https://www.swiggy.com" },
{ label: "Order via Zomato", href: "https://www.zomato.com" },
{ label: "WhatsApp Order", href: "https://wa.me/918247066797" },
@@ -65,7 +62,7 @@ export default function AboutPage() {
@@ -77,24 +74,16 @@ export default function AboutPage() {
description="Blue Sea Restaurant stands as a testament to culinary excellence and cultural preservation in Hyderabad. Since 1989, we have been more than just a restaurant – we are custodians of Hyderabadi heritage, serving time-honored recipes with unwavering commitment to quality and authenticity."
bulletPoints={[
{
- title: "Founded in 1989",
- description: "Established with a vision to preserve and celebrate the rich culinary traditions of Hyderabad for future generations.",
- icon: Heart,
+ title: "Founded in 1989", description: "Established with a vision to preserve and celebrate the rich culinary traditions of Hyderabad for future generations.", icon: Heart,
},
{
- title: "Master Chefs",
- description: "Our culinary team brings decades of experience in traditional Hyderabadi cooking techniques passed down through generations.",
- icon: UtensilsCrossed,
+ title: "Master Chefs", description: "Our culinary team brings decades of experience in traditional Hyderabadi cooking techniques passed down through generations.", icon: UtensilsCrossed,
},
{
- title: "Quality Promise",
- description: "Every ingredient is hand-selected from trusted suppliers to ensure exceptional taste and freshness in every dish.",
- icon: Leaf,
+ title: "Quality Promise", description: "Every ingredient is hand-selected from trusted suppliers to ensure exceptional taste and freshness in every dish.", icon: Leaf,
},
{
- title: "Community Trust",
- description: "Rated 4.5⭐ by over 8000 customers who have made us their first choice for authentic Hyderabadi dining.",
- icon: Star,
+ title: "Community Trust", description: "Rated 4.5⭐ by over 8000 customers who have made us their first choice for authentic Hyderabadi dining.", icon: Star,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking-dish-frying-pan_23-2149646206.jpg?_wi=2"
@@ -112,32 +101,14 @@ export default function AboutPage() {
description="Experience the authentic stories and praise from our loyal community of food enthusiasts"
testimonials={[
{
- id: "1",
- name: "Rajesh Kumar",
- handle: "@rajesh_h",
- testimonial: "Yummy food with great service and good atmosphere. The biryani is absolutely authentic and reminds me of home-cooked meals. Highly recommended!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg?_wi=2",
- imageAlt: "Rajesh Kumar",
- },
+ id: "1", name: "Rajesh Kumar", handle: "@rajesh_h", testimonial: "Yummy food with great service and good atmosphere. The biryani is absolutely authentic and reminds me of home-cooked meals. Highly recommended!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg?_wi=2", imageAlt: "Rajesh Kumar"},
{
- id: "2",
- name: "Priya Sharma",
- handle: "@priya_food",
- testimonial: "Great place for early morning snacks with tea or coffee. The bakery items are fresh and delicious. Perfect for breakfast before work!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-indian-person-posing-front-camera_482257-122324.jpg?_wi=2",
- imageAlt: "Priya Sharma",
- },
+ id: "2", name: "Priya Sharma", handle: "@priya_food", testimonial: "Great place for early morning snacks with tea or coffee. The bakery items are fresh and delicious. Perfect for breakfast before work!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-indian-person-posing-front-camera_482257-122324.jpg?_wi=2", imageAlt: "Priya Sharma"},
{
- id: "3",
- name: "Ahmed Hassan",
- handle: "@ahmed_h",
- testimonial: "The Irani Chai here is authentic and perfectly brewed. Combined with the fresh sheermal, it's the best morning ritual. Been coming here for years!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=2",
- imageAlt: "Ahmed Hassan",
- },
+ id: "3", name: "Ahmed Hassan", handle: "@ahmed_h", testimonial: "The Irani Chai here is authentic and perfectly brewed. Combined with the fresh sheermal, it's the best morning ritual. Been coming here for years!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=2", imageAlt: "Ahmed Hassan"},
]}
showRating={true}
animationType="slide-up"
@@ -155,45 +126,21 @@ export default function AboutPage() {
useInvertedBackground={false}
faqs={[
{
- id: "1",
- title: "How long has Blue Sea been serving Hyderabad?",
- content: "Blue Sea Restaurant has been serving authentic Hyderabadi cuisine since 1989, making us a 35+ year heritage establishment. We are proud to be one of Hyderabad's most trusted and beloved restaurants.",
- },
+ id: "1", title: "How long has Blue Sea been serving Hyderabad?", content: "Blue Sea Restaurant has been serving authentic Hyderabadi cuisine since 1989, making us a 35+ year heritage establishment. We are proud to be one of Hyderabad's most trusted and beloved restaurants."},
{
- id: "2",
- title: "What makes our biryani special?",
- content: "Our biryani is prepared using the traditional dum pukht method, where meat and rice are slow-cooked together in sealed vessels. We use premium ingredients, including hand-selected basmati rice and the finest spices sourced from authentic suppliers.",
- },
+ id: "2", title: "What makes our biryani special?", content: "Our biryani is prepared using the traditional dum pukht method, where meat and rice are slow-cooked together in sealed vessels. We use premium ingredients, including hand-selected basmati rice and the finest spices sourced from authentic suppliers."},
{
- id: "3",
- title: "Do you use authentic recipes?",
- content: "Yes, all our recipes are authentic and have been passed down through generations. Our master chefs are trained in traditional Hyderabadi cooking techniques to ensure every dish maintains its cultural integrity and authentic flavors.",
- },
+ id: "3", title: "Do you use authentic recipes?", content: "Yes, all our recipes are authentic and have been passed down through generations. Our master chefs are trained in traditional Hyderabadi cooking techniques to ensure every dish maintains its cultural integrity and authentic flavors."},
{
- id: "4",
- title: "What is your sourcing philosophy?",
- content: "We believe quality starts with ingredients. Every ingredient is hand-picked from trusted suppliers who meet our strict quality standards. We prioritize freshness, authenticity, and ethical sourcing in everything we use.",
- },
+ id: "4", title: "What is your sourcing philosophy?", content: "We believe quality starts with ingredients. Every ingredient is hand-picked from trusted suppliers who meet our strict quality standards. We prioritize freshness, authenticity, and ethical sourcing in everything we use."},
{
- id: "5",
- title: "Do you cater for special events?",
- content: "Absolutely! We offer comprehensive catering services for weddings, corporate events, family celebrations, and private parties. Our catering menu can be customized to meet your specific requirements and preferences.",
- },
+ id: "5", title: "Do you cater for special events?", content: "Absolutely! We offer comprehensive catering services for weddings, corporate events, family celebrations, and private parties. Our catering menu can be customized to meet your specific requirements and preferences."},
{
- id: "6",
- title: "How many customers have visited Blue Sea?",
- content: "Over 8000+ satisfied customers have trusted us with their dining experiences across the years. Our consistent 4.5⭐ rating across all platforms reflects our commitment to excellence and customer satisfaction.",
- },
+ id: "6", title: "How many customers have visited Blue Sea?", content: "Over 8000+ satisfied customers have trusted us with their dining experiences across the years. Our consistent 4.5⭐ rating across all platforms reflects our commitment to excellence and customer satisfaction."},
{
- id: "7",
- title: "What training do your chefs receive?",
- content: "Our chefs undergo rigorous training in traditional Hyderabadi cooking methods. They work under experienced mentors to master time-honored techniques, ensuring every dish is prepared with precision and cultural authenticity.",
- },
+ id: "7", title: "What training do your chefs receive?", content: "Our chefs undergo rigorous training in traditional Hyderabadi cooking methods. They work under experienced mentors to master time-honored techniques, ensuring every dish is prepared with precision and cultural authenticity."},
{
- id: "8",
- title: "Why choose Blue Sea over other restaurants?",
- content: "Blue Sea offers a unique combination of authentic heritage recipes, premium ingredients, exceptional service, and family-friendly atmosphere. We are more than a restaurant – we are custodians of Hyderabadi culinary culture.",
- },
+ id: "8", title: "Why choose Blue Sea over other restaurants?", content: "Blue Sea offers a unique combination of authentic heritage recipes, premium ingredients, exceptional service, and family-friendly atmosphere. We are more than a restaurant – we are custodians of Hyderabadi culinary culture."},
]}
faqsAnimation="slide-up"
/>
@@ -207,4 +154,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index ac324b4..5558993 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -24,13 +24,13 @@ export default function ContactPage() {
@@ -39,42 +39,22 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx
index 0a80b41..7de7cb5 100644
--- a/src/app/gallery/page.tsx
+++ b/src/app/gallery/page.tsx
@@ -26,16 +26,14 @@ export default function GalleryPage() {
@@ -45,37 +43,13 @@ export default function GalleryPage() {
description="Trusted by thousands of customers with exceptional ratings and consistent excellence"
metrics={[
{
- id: "1",
- value: "8000+",
- title: "Happy Customers",
- description: "Satisfied guests who trust us for authentic cuisine",
- imageSrc: "http://img.b2bpic.net/free-photo/group-young-happy-friends-enjoying-lunch-focus-is-african-american-woman-serving-salad-dining-table_637285-2870.jpg?_wi=2",
- imageAlt: "Happy Customers",
- },
+ id: "1", value: "8000+", title: "Happy Customers", description: "Satisfied guests who trust us for authentic cuisine", imageSrc: "http://img.b2bpic.net/free-photo/group-young-happy-friends-enjoying-lunch-focus-is-african-american-woman-serving-salad-dining-table_637285-2870.jpg?_wi=2", imageAlt: "Happy Customers"},
{
- id: "2",
- value: "4.5⭐",
- title: "Average Rating",
- description: "Consistently excellent reviews across all platforms",
- imageSrc: "http://img.b2bpic.net/free-photo/smiley-friends-restaurant-medium-shot_23-2149930132.jpg?_wi=2",
- imageAlt: "High Ratings",
- },
+ id: "2", value: "4.5⭐", title: "Average Rating", description: "Consistently excellent reviews across all platforms", imageSrc: "http://img.b2bpic.net/free-photo/smiley-friends-restaurant-medium-shot_23-2149930132.jpg?_wi=2", imageAlt: "High Ratings"},
{
- id: "3",
- value: "35+",
- title: "Years Legacy",
- description: "Serving authentic Hyderabadi cuisine since 1989",
- imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552626.jpg?_wi=2",
- imageAlt: "Heritage Since 1989",
- },
+ id: "3", value: "35+", title: "Years Legacy", description: "Serving authentic Hyderabadi cuisine since 1989", imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552626.jpg?_wi=2", imageAlt: "Heritage Since 1989"},
{
- id: "4",
- value: "18hrs",
- title: "Daily Service",
- description: "Open 7:00 AM to 1:00 AM for your convenience",
- imageSrc: "http://img.b2bpic.net/free-psd/brunch-concept-flyer-template_23-2148457482.jpg?_wi=2",
- imageAlt: "Extended Hours",
- },
+ id: "4", value: "18hrs", title: "Daily Service", description: "Open 7:00 AM to 1:00 AM for your convenience", imageSrc: "http://img.b2bpic.net/free-psd/brunch-concept-flyer-template_23-2148457482.jpg?_wi=2", imageAlt: "Extended Hours"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -89,59 +63,23 @@ export default function GalleryPage() {
description="Hear what our valued guests say about their Blue Sea experience"
testimonials={[
{
- id: "1",
- name: "Rajesh Kumar",
- handle: "@rajesh_h",
- testimonial: "Yummy food with great service and good atmosphere. The biryani is absolutely authentic and reminds me of home-cooked meals. Highly recommended!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg?_wi=3",
- imageAlt: "Rajesh Kumar",
- },
+ id: "1", name: "Rajesh Kumar", handle: "@rajesh_h", testimonial: "Yummy food with great service and good atmosphere. The biryani is absolutely authentic and reminds me of home-cooked meals. Highly recommended!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg?_wi=3", imageAlt: "Rajesh Kumar"},
{
- id: "2",
- name: "Priya Sharma",
- handle: "@priya_food",
- testimonial: "Great place for early morning snacks with tea or coffee. The bakery items are fresh and delicious. Perfect for breakfast before work!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-indian-person-posing-front-camera_482257-122324.jpg?_wi=3",
- imageAlt: "Priya Sharma",
- },
+ id: "2", name: "Priya Sharma", handle: "@priya_food", testimonial: "Great place for early morning snacks with tea or coffee. The bakery items are fresh and delicious. Perfect for breakfast before work!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-indian-person-posing-front-camera_482257-122324.jpg?_wi=3", imageAlt: "Priya Sharma"},
{
- id: "3",
- name: "Ahmed Hassan",
- handle: "@ahmed_h",
- testimonial: "The Irani Chai here is authentic and perfectly brewed. Combined with the fresh sheermal, it's the best morning ritual. Been coming here for years!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=3",
- imageAlt: "Ahmed Hassan",
- },
+ id: "3", name: "Ahmed Hassan", handle: "@ahmed_h", testimonial: "The Irani Chai here is authentic and perfectly brewed. Combined with the fresh sheermal, it's the best morning ritual. Been coming here for years!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=3", imageAlt: "Ahmed Hassan"},
{
- id: "4",
- name: "Divya Reddy",
- handle: "@divya_eats",
- testimonial: "Family-friendly atmosphere with impeccable service. The haleem is rich and flavorful. Perfect for celebrations and casual family dinners.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=2",
- imageAlt: "Divya Reddy",
- },
+ id: "4", name: "Divya Reddy", handle: "@divya_eats", testimonial: "Family-friendly atmosphere with impeccable service. The haleem is rich and flavorful. Perfect for celebrations and casual family dinners.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=2", imageAlt: "Divya Reddy"},
{
- id: "5",
- name: "Vikram Singh",
- handle: "@vikram_test",
- testimonial: "The Prawns 65 is a must-try appetizer. Crispy, tangy, and absolutely delicious. Pairs wonderfully with their signature beverages.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-indoors_23-2148899025.jpg?_wi=2",
- imageAlt: "Vikram Singh",
- },
+ id: "5", name: "Vikram Singh", handle: "@vikram_test", testimonial: "The Prawns 65 is a must-try appetizer. Crispy, tangy, and absolutely delicious. Pairs wonderfully with their signature beverages.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-indoors_23-2148899025.jpg?_wi=2", imageAlt: "Vikram Singh"},
{
- id: "6",
- name: "Sneha Patel",
- handle: "@sneha_food",
- testimonial: "Premium quality ingredients and authentic preparation methods. The attention to detail is evident in every dish. Blue Sea truly represents Hyderabadi excellence!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/smiling-charming-curly-hispanic-girl-cooking-her-kitchen-grates-cheese-grater_613910-4901.jpg?_wi=2",
- imageAlt: "Sneha Patel",
- },
+ id: "6", name: "Sneha Patel", handle: "@sneha_food", testimonial: "Premium quality ingredients and authentic preparation methods. The attention to detail is evident in every dish. Blue Sea truly represents Hyderabadi excellence!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/smiling-charming-curly-hispanic-girl-cooking-her-kitchen-grates-cheese-grater_613910-4901.jpg?_wi=2", imageAlt: "Sneha Patel"},
]}
showRating={true}
animationType="slide-up"
@@ -158,15 +96,7 @@ export default function GalleryPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
- "Swiggy Verified",
- "Google Top Rated",
- "Zomato Favorite",
- "TripAdvisor Excellent",
- "Facebook Recommended",
- "Instagram Popular",
- "Hyderabad Food Guide",
- "Local Heritage Champion",
- ]}
+ "Swiggy Verified", "Google Top Rated", "Zomato Favorite", "TripAdvisor Excellent", "Facebook Recommended", "Instagram Popular", "Hyderabad Food Guide", "Local Heritage Champion"]}
speed={40}
showCard={true}
/>
@@ -176,70 +106,41 @@ export default function GalleryPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 35a61f9..377be20 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -24,8 +24,7 @@ export default function HomePage() {
const footerColumns = [
{
- title: "Location & Hours",
- items: [
+ title: "Location & Hours", items: [
{ label: "Hyderguda-Basheerbagh Rd", href: "#" },
{ label: "Basheer Bagh, Hyderabad", href: "#" },
{ label: "Open: 7:00 AM - 1:00 AM", href: "#" },
@@ -33,18 +32,16 @@ export default function HomePage() {
],
},
{
- title: "Quick Links",
- items: [
+ title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
- { label: "Menu", href: "#menu" },
+ { label: "Menu", href: "/menu" },
{ label: "Reviews", href: "#testimonials" },
- { label: "Contact", href: "#contact" },
+ { label: "Contact", href: "/contact" },
],
},
{
- title: "Order Online",
- items: [
+ title: "Order Online", items: [
{ label: "Order via Swiggy", href: "https://www.swiggy.com" },
{ label: "Order via Zomato", href: "https://www.zomato.com" },
{ label: "WhatsApp Order", href: "https://wa.me/918247066797" },
@@ -69,7 +66,7 @@ export default function HomePage() {
@@ -79,22 +76,16 @@ export default function HomePage() {
logoText="BLUE SEA"
description="Taste the Authentic Flavors of Hyderabad - Est. 1989"
buttons={[
- { text: "View Menu", href: "#menu" },
+ { text: "View Menu", href: "/menu" },
{ text: "Order Now", href: "https://www.swiggy.com" },
]}
slides={[
{
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pakistan-dish-assortment_23-2148821520.jpg",
- imageAlt: "Hyderabadi Mutton Biryani",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pakistan-dish-assortment_23-2148821520.jpg", imageAlt: "Hyderabadi Mutton Biryani"},
{
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-bowl-filled-with-honey_23-2148371898.jpg",
- imageAlt: "Authentic Irani Chai",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/close-up-ceramic-bowl-filled-with-honey_23-2148371898.jpg", imageAlt: "Authentic Irani Chai"},
{
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-eating-together_23-2148972776.jpg",
- imageAlt: "Blue Sea Restaurant Interior",
- },
+ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-eating-together_23-2148972776.jpg", imageAlt: "Blue Sea Restaurant Interior"},
]}
autoplayDelay={4000}
showDimOverlay={true}
@@ -108,24 +99,16 @@ export default function HomePage() {
description="Welcome to Blue Sea Restaurant, Hyderabad's most beloved destination for authentic Hyderabadi biryani and traditional tea bakery delights. For over three decades, we have been committed to preserving the rich culinary heritage of Hyderabad while maintaining the highest standards of quality and service."
bulletPoints={[
{
- title: "Authentic Hyderabadi Cuisine",
- description: "Expert preparation of traditional biryani, haleem, and signature dishes using time-honored recipes passed down through generations.",
- icon: UtensilsCrossed,
+ title: "Authentic Hyderabadi Cuisine", description: "Expert preparation of traditional biryani, haleem, and signature dishes using time-honored recipes passed down through generations.", icon: UtensilsCrossed,
},
{
- title: "Premium Ingredients",
- description: "Sourced from the finest suppliers, ensuring every dish meets our exacting standards for taste and freshness.",
- icon: Leaf,
+ title: "Premium Ingredients", description: "Sourced from the finest suppliers, ensuring every dish meets our exacting standards for taste and freshness.", icon: Leaf,
},
{
- title: "Family-Friendly Atmosphere",
- description: "Warm, welcoming ambiance perfect for families, friends, and celebrations of all kinds.",
- icon: Heart,
+ title: "Family-Friendly Atmosphere", description: "Warm, welcoming ambiance perfect for families, friends, and celebrations of all kinds.", icon: Heart,
},
{
- title: "4.5⭐ Rating",
- description: "Trusted by 8000+ satisfied customers who consistently rate us as Hyderabad's best restaurant.",
- icon: Star,
+ title: "4.5⭐ Rating", description: "Trusted by 8000+ satisfied customers who consistently rate us as Hyderabad's best restaurant.", icon: Star,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/male-chef-kitchen-cooking-dish-frying-pan_23-2149646206.jpg?_wi=1"
@@ -144,59 +127,23 @@ export default function HomePage() {
tag="Culinary Excellence"
features={[
{
- id: "1",
- title: "Special Mutton Biryani",
- author: "Hyderabadi Specialty",
- description: "Tender mutton slow-cooked with fragrant basmati rice, exotic spices, and aromatic herbs. A true masterpiece of Hyderabadi cuisine that has delighted guests for generations.",
- tags: ["Signature", "Non-Veg", "Spicy"],
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-spoons-with-spices_23-2148747709.jpg?_wi=1",
- imageAlt: "Special Mutton Biryani",
- },
+ id: "1", title: "Special Mutton Biryani", author: "Hyderabadi Specialty", description: "Tender mutton slow-cooked with fragrant basmati rice, exotic spices, and aromatic herbs. A true masterpiece of Hyderabadi cuisine that has delighted guests for generations.", tags: ["Signature", "Non-Veg", "Spicy"],
+ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-spoons-with-spices_23-2148747709.jpg?_wi=1", imageAlt: "Special Mutton Biryani"},
{
- id: "2",
- title: "Mutton Special Haleem",
- author: "Chef's Special",
- description: "A festive favorite combining slow-cooked mutton, lentils, and wheat in a rich, aromatic blend. Perfect for a hearty meal with traditional garnishes.",
- tags: ["Non-Veg", "Warm", "Authentic"],
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-bowl_23-2148728102.jpg?_wi=1",
- imageAlt: "Mutton Special Haleem",
- },
+ id: "2", title: "Mutton Special Haleem", author: "Chef's Special", description: "A festive favorite combining slow-cooked mutton, lentils, and wheat in a rich, aromatic blend. Perfect for a hearty meal with traditional garnishes.", tags: ["Non-Veg", "Warm", "Authentic"],
+ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-bowl_23-2148728102.jpg?_wi=1", imageAlt: "Mutton Special Haleem"},
{
- id: "3",
- title: "Prawns 65",
- author: "Coastal Delight",
- description: "Crispy fried prawns tossed with aromatic spices, peppers, and onions. A tangy and spicy appetizer that showcases the best of coastal flavors.",
- tags: ["Seafood", "Appetizer", "Crispy"],
- imageSrc: "http://img.b2bpic.net/free-photo/top-view-shrimps-batter-with-sauce_141793-4125.jpg?_wi=1",
- imageAlt: "Prawns 65",
- },
+ id: "3", title: "Prawns 65", author: "Coastal Delight", description: "Crispy fried prawns tossed with aromatic spices, peppers, and onions. A tangy and spicy appetizer that showcases the best of coastal flavors.", tags: ["Seafood", "Appetizer", "Crispy"],
+ imageSrc: "http://img.b2bpic.net/free-photo/top-view-shrimps-batter-with-sauce_141793-4125.jpg?_wi=1", imageAlt: "Prawns 65"},
{
- id: "4",
- title: "Methi Murgh",
- author: "Herb-Infused",
- description: "Tender chicken marinated in yogurt and fresh fenugreek leaves, cooked with aromatic spices. A fragrant dish that balances herbaceous and savory notes.",
- tags: ["Non-Veg", "Herbs", "Savory"],
- imageSrc: "http://img.b2bpic.net/free-photo/massaman-curry-frying-pan-with-spices-cement-floor_1150-20776.jpg?_wi=1",
- imageAlt: "Methi Murgh",
- },
+ id: "4", title: "Methi Murgh", author: "Herb-Infused", description: "Tender chicken marinated in yogurt and fresh fenugreek leaves, cooked with aromatic spices. A fragrant dish that balances herbaceous and savory notes.", tags: ["Non-Veg", "Herbs", "Savory"],
+ imageSrc: "http://img.b2bpic.net/free-photo/massaman-curry-frying-pan-with-spices-cement-floor_1150-20776.jpg?_wi=1", imageAlt: "Methi Murgh"},
{
- id: "5",
- title: "Irani Chai",
- author: "Signature Beverage",
- description: "Authentic Hyderabadi tea brewed with milk, sugar, and spices. The perfect companion to our bakery items, served hot and fresh.",
- tags: ["Beverage", "Tea", "Traditional"],
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-making-indian-drinks_23-2149312369.jpg?_wi=1",
- imageAlt: "Irani Chai",
- },
+ id: "5", title: "Irani Chai", author: "Signature Beverage", description: "Authentic Hyderabadi tea brewed with milk, sugar, and spices. The perfect companion to our bakery items, served hot and fresh.", tags: ["Beverage", "Tea", "Traditional"],
+ imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-making-indian-drinks_23-2149312369.jpg?_wi=1", imageAlt: "Irani Chai"},
{
- id: "6",
- title: "Fresh Bakery Selection",
- author: "Artisan Made",
- description: "Daily-baked pastries, cookies, and breads including sheermal, roomali roti, and traditional Hyderabadi cookies. Perfect with tea or as standalone treats.",
- tags: ["Bakery", "Fresh", "Artisan"],
- imageSrc: "http://img.b2bpic.net/free-photo/crispy-butter-cookies-with-sugar-powder-wooden-platter_114579-61778.jpg?_wi=1",
- imageAlt: "Fresh Bakery Selection",
- },
+ id: "6", title: "Fresh Bakery Selection", author: "Artisan Made", description: "Daily-baked pastries, cookies, and breads including sheermal, roomali roti, and traditional Hyderabadi cookies. Perfect with tea or as standalone treats.", tags: ["Bakery", "Fresh", "Artisan"],
+ imageSrc: "http://img.b2bpic.net/free-photo/crispy-butter-cookies-with-sugar-powder-wooden-platter_114579-61778.jpg?_wi=1", imageAlt: "Fresh Bakery Selection"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -210,37 +157,13 @@ export default function HomePage() {
description="Trusted by thousands of customers with exceptional ratings and consistent excellence"
metrics={[
{
- id: "1",
- value: "8000+",
- title: "Happy Customers",
- description: "Satisfied guests who trust us for authentic cuisine",
- imageSrc: "http://img.b2bpic.net/free-photo/group-young-happy-friends-enjoying-lunch-focus-is-african-american-woman-serving-salad-dining-table_637285-2870.jpg?_wi=1",
- imageAlt: "Happy Customers",
- },
+ id: "1", value: "8000+", title: "Happy Customers", description: "Satisfied guests who trust us for authentic cuisine", imageSrc: "http://img.b2bpic.net/free-photo/group-young-happy-friends-enjoying-lunch-focus-is-african-american-woman-serving-salad-dining-table_637285-2870.jpg?_wi=1", imageAlt: "Happy Customers"},
{
- id: "2",
- value: "4.5⭐",
- title: "Average Rating",
- description: "Consistently excellent reviews across all platforms",
- imageSrc: "http://img.b2bpic.net/free-photo/smiley-friends-restaurant-medium-shot_23-2149930132.jpg?_wi=1",
- imageAlt: "High Ratings",
- },
+ id: "2", value: "4.5⭐", title: "Average Rating", description: "Consistently excellent reviews across all platforms", imageSrc: "http://img.b2bpic.net/free-photo/smiley-friends-restaurant-medium-shot_23-2149930132.jpg?_wi=1", imageAlt: "High Ratings"},
{
- id: "3",
- value: "35+",
- title: "Years Legacy",
- description: "Serving authentic Hyderabadi cuisine since 1989",
- imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552626.jpg?_wi=1",
- imageAlt: "Heritage Since 1989",
- },
+ id: "3", value: "35+", title: "Years Legacy", description: "Serving authentic Hyderabadi cuisine since 1989", imageSrc: "http://img.b2bpic.net/free-photo/asian-people-having-dinner-party_23-2149552626.jpg?_wi=1", imageAlt: "Heritage Since 1989"},
{
- id: "4",
- value: "18hrs",
- title: "Daily Service",
- description: "Open 7:00 AM to 1:00 AM for your convenience",
- imageSrc: "http://img.b2bpic.net/free-psd/brunch-concept-flyer-template_23-2148457482.jpg?_wi=1",
- imageAlt: "Extended Hours",
- },
+ id: "4", value: "18hrs", title: "Daily Service", description: "Open 7:00 AM to 1:00 AM for your convenience", imageSrc: "http://img.b2bpic.net/free-psd/brunch-concept-flyer-template_23-2148457482.jpg?_wi=1", imageAlt: "Extended Hours"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -254,59 +177,23 @@ export default function HomePage() {
description="Hear what our valued guests say about their Blue Sea experience"
testimonials={[
{
- id: "1",
- name: "Rajesh Kumar",
- handle: "@rajesh_h",
- testimonial: "Yummy food with great service and good atmosphere. The biryani is absolutely authentic and reminds me of home-cooked meals. Highly recommended!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg?_wi=1",
- imageAlt: "Rajesh Kumar",
- },
+ id: "1", name: "Rajesh Kumar", handle: "@rajesh_h", testimonial: "Yummy food with great service and good atmosphere. The biryani is absolutely authentic and reminds me of home-cooked meals. Highly recommended!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-business-woman-with-sunglasses_23-2148603032.jpg?_wi=1", imageAlt: "Rajesh Kumar"},
{
- id: "2",
- name: "Priya Sharma",
- handle: "@priya_food",
- testimonial: "Great place for early morning snacks with tea or coffee. The bakery items are fresh and delicious. Perfect for breakfast before work!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-indian-person-posing-front-camera_482257-122324.jpg?_wi=1",
- imageAlt: "Priya Sharma",
- },
+ id: "2", name: "Priya Sharma", handle: "@priya_food", testimonial: "Great place for early morning snacks with tea or coffee. The bakery items are fresh and delicious. Perfect for breakfast before work!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-indian-person-posing-front-camera_482257-122324.jpg?_wi=1", imageAlt: "Priya Sharma"},
{
- id: "3",
- name: "Ahmed Hassan",
- handle: "@ahmed_h",
- testimonial: "The Irani Chai here is authentic and perfectly brewed. Combined with the fresh sheermal, it's the best morning ritual. Been coming here for years!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=1",
- imageAlt: "Ahmed Hassan",
- },
+ id: "3", name: "Ahmed Hassan", handle: "@ahmed_h", testimonial: "The Irani Chai here is authentic and perfectly brewed. Combined with the fresh sheermal, it's the best morning ritual. Been coming here for years!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-people-living-without-care_23-2149868480.jpg?_wi=1", imageAlt: "Ahmed Hassan"},
{
- id: "4",
- name: "Divya Reddy",
- handle: "@divya_eats",
- testimonial: "Family-friendly atmosphere with impeccable service. The haleem is rich and flavorful. Perfect for celebrations and casual family dinners.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=1",
- imageAlt: "Divya Reddy",
- },
+ id: "4", name: "Divya Reddy", handle: "@divya_eats", testimonial: "Family-friendly atmosphere with impeccable service. The haleem is rich and flavorful. Perfect for celebrations and casual family dinners.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg?_wi=1", imageAlt: "Divya Reddy"},
{
- id: "5",
- name: "Vikram Singh",
- handle: "@vikram_test",
- testimonial: "The Prawns 65 is a must-try appetizer. Crispy, tangy, and absolutely delicious. Pairs wonderfully with their signature beverages.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-indoors_23-2148899025.jpg?_wi=1",
- imageAlt: "Vikram Singh",
- },
+ id: "5", name: "Vikram Singh", handle: "@vikram_test", testimonial: "The Prawns 65 is a must-try appetizer. Crispy, tangy, and absolutely delicious. Pairs wonderfully with their signature beverages.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-indoors_23-2148899025.jpg?_wi=1", imageAlt: "Vikram Singh"},
{
- id: "6",
- name: "Sneha Patel",
- handle: "@sneha_food",
- testimonial: "Premium quality ingredients and authentic preparation methods. The attention to detail is evident in every dish. Blue Sea truly represents Hyderabadi excellence!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/smiling-charming-curly-hispanic-girl-cooking-her-kitchen-grates-cheese-grater_613910-4901.jpg?_wi=1",
- imageAlt: "Sneha Patel",
- },
+ id: "6", name: "Sneha Patel", handle: "@sneha_food", testimonial: "Premium quality ingredients and authentic preparation methods. The attention to detail is evident in every dish. Blue Sea truly represents Hyderabadi excellence!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/smiling-charming-curly-hispanic-girl-cooking-her-kitchen-grates-cheese-grater_613910-4901.jpg?_wi=1", imageAlt: "Sneha Patel"},
]}
showRating={true}
animationType="slide-up"
@@ -323,15 +210,7 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
- "Swiggy Verified",
- "Google Top Rated",
- "Zomato Favorite",
- "TripAdvisor Excellent",
- "Facebook Recommended",
- "Instagram Popular",
- "Hyderabad Food Guide",
- "Local Heritage Champion",
- ]}
+ "Swiggy Verified", "Google Top Rated", "Zomato Favorite", "TripAdvisor Excellent", "Facebook Recommended", "Instagram Popular", "Hyderabad Food Guide", "Local Heritage Champion"]}
speed={40}
showCard={true}
/>
@@ -345,4 +224,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}