'use client' import React from 'react' import Image from 'next/image' import Link from 'next/link' import styles from './Catering.module.css' import { motion, AnimatePresence } from 'framer-motion' import { useState, useEffect } from 'react' // Icons const AwardIcon = () => ( ) const EventsIcon = () => ( ) const CateringIcon = () => ( ) const VenueIcon = () => ( ) const PhoneIcon = () => ( ) const testimonials = [ { id: 1, text: "It is a long established fact that our catering will distract you with delicious content of a page when looking at its layout." }, { id: 2, text: "The authentic flavors transported us straight to Turkey. An unforgettable culinary experience for our wedding guests." }, { id: 3, text: "Professional service and exquisite presentation. Antalya Catering made our corporate event truly spectacular." } ] export default function Catering() { const [activeQuote, setActiveQuote] = useState(0) useEffect(() => { const timer = setInterval(() => { setActiveQuote((prev) => (prev + 1) % testimonials.length) }, 4000) return () => clearInterval(timer) }, []) return (
{/* Left Side: Collage */}
{/* Decorative Frame */}
{/* 1. Top Left Image */}
Catering Team
{/* 2. Bottom Right Image */}
Chef Working
{/* 3. Floating Call Widget (Clickable) */}
Call Us anytime +1 519 588 2037
{/* Right Side: Content */}
Home Gallery Decorative Dinner Icon CATERING & EVENTS Home Gallery Decorative Cutlery Icon

Turkish Catering Excellence

Experience authentic Turkish cuisine at your next event. From intimate gatherings to grand celebrations, we provide exceptional service and unforgettable flavors that will delight your guests.

{/* Middle Row: Features + Quote Box */}
{/* Features Column */}

Events & Celebrations

{/*

Tailored menus for every occasion.

*/}

Food & Beverage Catering

{/*

Traditional charcoal-grilled dishes.

*/}

Venue & Service Options

{/*

Traditional charcoal-grilled dishes.

*/}
{/* Quote Box Slider */}

"{testimonials[activeQuote].text}"

,,
{/* Optional Dots/Indicators can be added here if needed, but user just asked for sliding */}
{testimonials.map((_, index) => ( setActiveQuote(index)} /> ))}
{/* Bottom Action Row */}
Discover More →
) }