// Centralized Image Manager for USINDO Website // This file exports an object containing all image URLs used across the site. // To change an image, simply update the URL here. const USINDO_IMAGES = { // Branding logo: { icon: 'fa-solid fa-graduation-cap', // FontAwesome icon class placeholder: 'https://via.placeholder.com/150x150?text=USINDO+Logo' }, // Hero Section (Beranda) hero: [ { url: 'https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1920&q=80', title: 'Membangun Generasi', subtitle: 'Unggul & Berkarakter', desc: 'Universitas Sehati Indonesia (USINDO) hadir di Karawang sebagai pusat pendidikan tinggi modern.' }, { url: 'https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1920&q=80', title: 'Fasilitas Modern', subtitle: 'Standar Internasional', desc: 'Menunjang pembelajaran dengan laboratorium dan sarana prasarana terkini.' }, { url: 'https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1920&q=80', title: 'Komunitas Akademik', subtitle: 'Inklusif & Dinamis', desc: 'Bergabunglah dengan ribuan mahasiswa yang siap menjadi pemimpin masa depan.' } ], // Faculties (Thumbnails & Headers) faculties: { teknik: 'https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=800&q=80', ekonomi: 'https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=800&q=80', hukum: 'https://images.unsplash.com/photo-1589829085413-56de8ae18c73?auto=format&fit=crop&w=800&q=80', kesehatan: 'https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=800&q=80', // Study Programs informatika: 'https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1920&q=80', manajemen: 'https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80', hukum_prodi: 'https://images.unsplash.com/photo-1589829085413-56de8ae18c73?auto=format&fit=crop&w=1920&q=80', kesmas: 'https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1920&q=80', kebidanan: 'https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?auto=format&fit=crop&w=1920&q=80', keperawatan: 'https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?auto=format&fit=crop&w=1920&q=80' }, // Facilities facilities: { lab_komputer: 'https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=800&q=80', perpustakaan: 'https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=800&q=80', olahraga: 'https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=800&q=80', lab_kesehatan: 'https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=800&q=80', kelas: 'https://images.unsplash.com/photo-1541829070764-84a7d30dd3f3?auto=format&fit=crop&w=800&q=80', kantin: 'https://images.unsplash.com/photo-1567521464027-f127ff144326?auto=format&fit=crop&w=800&q=80' }, // People (Rectors, Lecturers) people: { rektor: 'https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=600&q=80', dosen_teknik: 'https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=400&q=80', dosen_ekonomi: 'https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=400&q=80', dosen_hukum: 'https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=400&q=80', dosen_kesehatan: 'https://images.unsplash.com/photo-1559839734-2b71ea197ec2?auto=format&fit=crop&w=400&q=80' }, // News news: [ 'https://images.unsplash.com/photo-1523580494863-6f3031224c94?auto=format&fit=crop&w=800&q=80', 'https://images.unsplash.com/photo-1531545514256-b1400bc00f31?auto=format&fit=crop&w=400&q=80', 'https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=400&q=80', 'https://images.unsplash.com/photo-1571260899304-425eee4c7efc?auto=format&fit=crop&w=400&q=80' ] }; // Expose to Alpine.js if available document.addEventListener('alpine:init', () => { Alpine.data('imageManager', () => ({ images: USINDO_IMAGES })); });