import React, { useState } from 'react'; import { Publication, PublicationType } from '../types'; import { Download, BookOpen, Star, Filter } from 'lucide-react'; import { Reveal } from './Reveal'; interface PublicationsProps { t: any; } const SAMPLE_PUBLICATIONS: Publication[] = [ { id: '1', title: 'KAMPÜS CADILARI FANZİN #12', type: 'FANZIN', date: 'OCAK 2025', coverUrl: 'https://images.unsplash.com/photo-1544947950-fa07a98d237f?auto=format&fit=crop&q=80&w=400', description: 'Yeni dönem, yeni mücadeleler. Kampüslerdeki cadı avına karşı sesimizi yükseltiyoruz.', }, { id: '2', title: 'GÜVENLİ KAMPÜS REHBERİ', type: 'BROSUR', date: 'ARALIK 2024', coverUrl: 'https://images.unsplash.com/photo-1535905557558-afc4877a26fc?auto=format&fit=crop&q=80&w=400', description: 'Cinsel taciz ve saldırıya karşı haklarımız, başvuru mekanizmaları ve dayanışma ağları.', }, { id: '3', title: 'AKADEMİDE CİNSİYETÇİLİK RAPORU', type: 'RAPOR', date: 'KASIM 2024', coverUrl: 'https://images.unsplash.com/photo-1555449377-a8b411132a58?auto=format&fit=crop&q=80&w=400', description: 'Türkiye genelinde 50 üniversitede yapılan araştırmanın çarpıcı sonuçları.', }, { id: '4', title: '8 MART ÖZEL SAYI', type: 'FANZIN', date: 'MART 2024', coverUrl: 'https://images.unsplash.com/photo-1532012197267-da84d127e765?auto=format&fit=crop&q=80&w=400', description: 'Geceyi de, sokakları da, meydanları da istiyoruz! Feminist isyan her yerde.', }, { id: '5', title: 'CADI SÖZLÜĞÜ', type: 'KITAP', date: 'EYLÜL 2023', coverUrl: 'https://images.unsplash.com/photo-1512820790803-83ca734da794?auto=format&fit=crop&q=80&w=400', description: 'Feminizmin temel kavramları, bizden kelimeler ve cadıların dili.', }, ]; export const Publications: React.FC = ({ t }) => { const [filter, setFilter] = useState('ALL'); const filteredPublications = filter === 'ALL' ? SAMPLE_PUBLICATIONS : SAMPLE_PUBLICATIONS.filter(p => p.type === filter); return (
{/* Background Decoration */}
{/* --- HEADER SECTION --- */}

{t.publications.header}

Kampüs Cadıları'nın ürettiği tüm fanzin, broşür, rapor ve kitaplara buradan ulaşabilir, dijital kopyalarını indirebilirsiniz.

{/* --- FEATURED SECTION --- */}
Featured Zine
{t.publications.featured}

KAMPÜS CADILARI
FANZİN #13

Yeni sayımızda "Kampüslerde Barınma Krizi" dosyasını açıyoruz. Yurtlardaki niteliksiz koşullar, fahiş kiralar ve barınma hakkımız üzerine sözümüz var.

{/* --- FILTERS --- */}
{/* --- GRID --- */}
{filteredPublications.map((pub) => (
{/* Card Background Layer */}
{/* Main Card */}
{/* Image Area */}
{pub.title}
{pub.date}
{/* Type Badge */}
{pub.type}
{/* Content Area */}

{pub.title}

{pub.description}

))}
); };