'use client' import Navbar from "@/components/Navbar/Navbar"; import Footer from "@/components/Footer/Footer"; import Image from "next/image"; import Link from "next/link"; import styles from "./blog.module.css"; import { blogData } from "@/utils/constant"; import { motion } from "framer-motion"; export default function BlogPage() { // Animation variants const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.15, delayChildren: 0.2 } } }; const cardVariants = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6 } } }; const heroVariants = { hidden: { opacity: 0, y: -20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8 } } }; return (

Our Blog

Home / Blog

icon ANTALYA icon

Stories From Our Kitchen, And Traditions

Discover the rich heritage of Turkish cuisine through our blog. From traditional recipes and cooking techniques to the cultural significance of tea and hospitality, we share insights into what makes Turkish food truly special.

{blogData.map((blog) => (
{blog.title}

{blog.title}

{blog.date}

{blog.excerpt}

Read More
))}
); }