diff --git a/src/app/page.tsx b/src/app/page.tsx index bd5add4..93609fe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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 ( 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") } ]} />