4 Commits

Author SHA1 Message Date
76097a4224 Update src/app/page.tsx 2026-03-03 14:30:18 +00:00
6c7a161b38 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:07:33 +00:00
8a7d32ad69 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:05:24 +00:00
b149f0f6e0 Merge version_1 into main
Merge version_1 into main
2026-03-03 14:04:33 +00:00

View File

@@ -12,6 +12,10 @@ import FooterBase from "@/components/sections/footer/FooterBase";
import { ChefHat, Sparkles, Headphones, Flame, Star, MapPin, Users, Utensils, Video, Clock, FileText, CheckCircle, RefreshCw, Phone } from "lucide-react";
export default function LandingPage() {
const handleServiceClick = (serviceId: string) => {
console.log(`Service clicked: ${serviceId}`);
};
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -140,16 +144,16 @@ export default function LandingPage() {
carouselMode="buttons"
blogs={[
{
id: "1", category: "Catering", title: "Full-Service Catering", excerpt: "End-to-end catering solutions for weddings, corporate events, private parties, and special occasions with customized menus.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-serving-herself-buffet-restaurant_1262-1714.jpg", imageAlt: "Full service catering", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Available Year-Round"
id: "1", category: "Catering", title: "Full-Service Catering", excerpt: "End-to-end catering solutions for weddings, corporate events, private parties, and special occasions with customized menus.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-serving-herself-buffet-restaurant_1262-1714.jpg", imageAlt: "Full service catering", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Available Year-Round", onBlogClick: () => handleServiceClick("catering")
},
{
id: "2", category: "Consultation", title: "Menu Development", excerpt: "Personalized menu planning and development that aligns with your vision, dietary requirements, and culinary preferences.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-with-different-seasonings-dark-background-health-diet-vegetable-salad-lunch_140725-96836.jpg", imageAlt: "Menu development", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Custom Timelines"
id: "2", category: "Consultation", title: "Menu Development", excerpt: "Personalized menu planning and development that aligns with your vision, dietary requirements, and culinary preferences.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-vegetable-salad-with-different-seasonings-dark-background-health-diet-vegetable-salad-lunch_140725-96836.jpg", imageAlt: "Menu development", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Custom Timelines", onBlogClick: () => handleServiceClick("menu-development")
},
{
id: "3", category: "Consulting", title: "Culinary Training", excerpt: "Culinary coaching and training sessions to elevate your cooking skills and knowledge of professional techniques.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cooking-kitchen_53876-2.jpg", imageAlt: "Culinary training", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Flexible Scheduling"
id: "3", category: "Consulting", title: "Culinary Training", excerpt: "Culinary coaching and training sessions to elevate your cooking skills and knowledge of professional techniques.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-cooking-kitchen_53876-2.jpg", imageAlt: "Culinary training", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Flexible Scheduling", onBlogClick: () => handleServiceClick("culinary-training")
},
{
id: "4", category: "Events", title: "Special Events", excerpt: "Custom culinary experiences for product launches, fundraisers, gala dinners, and exclusive private events.", imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-set-with-white-napkins-red-ribbons_8353-51.jpg", imageAlt: "Special events", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Event Dependent"
id: "4", category: "Events", title: "Special Events", excerpt: "Custom culinary experiences for product launches, fundraisers, gala dinners, and exclusive private events.", imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-set-with-white-napkins-red-ribbons_8353-51.jpg", imageAlt: "Special events", authorName: "NGC Culinary Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-kitchen_23-2149631733.jpg", date: "Event Dependent", onBlogClick: () => handleServiceClick("special-events")
}
]}
/>