import React, { useState, useEffect } from 'react';
import {
Menu, X, Globe, ChevronRight, Film, MapPin,
Briefcase, FileText, Phone, Award, Users,
Clock, Camera, Music, Monitor, LayoutGrid,
Search, ArrowRight, Download, Info
} from 'lucide-react';
// --- UI Components ---
const Button = ({ children, variant = 'primary', className = '', ...props }) => {
const variants = {
primary: 'bg-slate-900 text-white hover:bg-slate-800',
secondary: 'bg-amber-600 text-white hover:bg-amber-700',
outline: 'border-2 border-slate-900 text-slate-900 hover:bg-slate-50',
gold: 'bg-amber-100 text-amber-900 hover:bg-amber-200 border border-amber-200'
};
return (
{children}
);
};
const Card = ({ title, description, image, icon: Icon, children, className = "" }) => (
{image &&
}
{Icon &&
}
{title}
{description}
{children}
);
const SectionHeading = ({ title, subtitle, light = false }) => (
{title}
{subtitle &&
{subtitle}
}
);
// --- Main Application ---
export default function App() {
const [currentView, setCurrentView] = useState('home'); // home, about, services, careers, tenders, contact
const [site, setSite] = useState('ksfdc'); // ksfdc, chitranjali
const [lang, setLang] = useState('EN');
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
// Auto-scroll to top on view change
useEffect(() => {
window.scrollTo(0, 0);
}, [currentView, site]);
const navLinks = [
{ id: 'home', label: 'Home' },
{ id: 'about', label: 'About Us' },
{ id: 'services', label: 'Services' },
{ id: 'careers', label: 'Careers' },
{ id: 'tenders', label: 'Tenders' },
{ id: 'contact', label: 'Contact' },
];
// --- Sub-Views (Main KSFDC) ---
const HomeView = () => (
{/* Hero Section */}
Kerala State Film Development Corporation
Preserving Legacy,
Shaping the Future of Cinema.
From historic archives to world-class production facilities, we empower the storytellers of Kerala.
setCurrentView('services')} variant="secondary">Explore Our Services
{setSite('chitranjali'); setCurrentView('home');}} className="bg-white/10 backdrop-blur-md border border-white/20 hover:bg-white/20">
Chitranjali Studios
{/* About Brief */}
setCurrentView('about')}>Learn More About Us
{/* Services Grid */}
Our Core Initiatives
Comprehensive support for the film ecosystem of Kerala.
View Schemes
Locate Theatres
setSite('chitranjali')}>Visit Studio
{/* Announcements / Tenders */}
{[
"Application invited for Women Filmmaker Scheme 2024",
"Results announced: Short Film Contest 2023",
"New Modernization project at Chitranjali Studio Phase II",
"Employment Notification: Sound Engineers (Contract)"
].map((note, idx) => (
))}
setCurrentView('tenders')}>View All Notifications
Quick Links
Citizen Charter
Tender Archive
RTI Information
Previous Production List
Need Support?
Contact our assistance desk for help with applications and schemes.
setCurrentView('contact')}>Get in Touch
);
const AboutView = () => (
About KSFDC
Learn about the pioneers of public sector cinema in India.
{[
{ year: "1975", title: "Inception", text: "Founded by the Government of Kerala to promote the art of cinema." },
{ year: "1980", title: "Chitranjali Launch", text: "Studio complex commissioned by Smt. Indira Gandhi." },
{ year: "1995", title: "Theatre Expansion", text: "Network of theatres established across the state." },
{ year: "2018", title: "Modernization", text: "Implemented high-end digital DI and post-production facilities." }
].map((item, idx) => (
{item.year}
{item.title}
{item.text}
))}
Key Contacts
{[
{ role: "Chairman", name: "Shaji N. Karun", email: "chairman@ksfdc.in" },
{ role: "Managing Director", name: "K.V. Manoj Kumar", email: "md@ksfdc.in" },
{ role: "General Manager", name: "G. Sreekumar", email: "gm@ksfdc.in" }
].map((p, idx) => (
{p.role}
{p.name}
{p.email}
))}
);
const ServicesView = () => (
Film Support Schemes
Production of Feature Films for SC/ST filmmakers with 100% funding.
Women Empowerment Cinema: Direct funding for projects led by women.
Subsidy schemes for films shot completely in Kerala.
Apply Online
Cinema Exhibition
We operate state-of-the-art cinemas across Kerala, ensuring quality viewing at affordable prices for the general public.
Kairali - Trivandrum
Sree - Ernakulam
Nila - Thrissur
Chithranjali - Kottayam
Book Tickets
);
const CareersView = () => (
Ref ID
Position
Location
Type
Action
{[
{ id: "JOB-2024-01", title: "Assistant Sound Engineer", loc: "Trivandrum", type: "Full Time" },
{ id: "JOB-2024-03", title: "Marketing Executive", loc: "Kochi", type: "Contract" },
{ id: "JOB-2024-07", title: "Accountant (Internal)", loc: "Trivandrum", type: "Deputation" },
{ id: "JOB-2024-09", title: "Post Production Supervisor", loc: "Trivandrum", type: "Full Time" }
].map((job, idx) => (
{job.id}
{job.title}
{job.loc}
{job.type}
Apply Now
))}
);
const TendersView = () => (
Active Tenders
Archive
E-Tendering Portal
{[
{ title: "Supply and Installation of Cinema Projectors at Kairali Theatre", val: "Above 5L", date: "Jan 30, 2024" },
{ title: "Annual Maintenance Contract for Studio Audio Hardware", val: "Below 5L", date: "Feb 15, 2024" },
{ title: "Renovation of Studio Floor No. 3 (Flooring & Acoustics)", val: "Above 5L", date: "Jan 12, 2024" },
{ title: "Pest Control Services for Head Office Complex", val: "Below 5L", date: "Mar 05, 2024" }
].map((tender, idx) => (
{tender.title}
Category: {tender.val}
Deadline: {tender.date}
PDF
{tender.val === "Above 5L" ? (
Submit on GeM
) : (
Submit Online
)}
))}
);
const ContactView = () => (
Head Office
Kerala State Film Development Corporation Ltd. Chalachithra Kalabhavan, Vazhuthacaud Thiruvananthapuram - 695 014
Phone & Fax
+91 471 2321586, 2326120 Fax: +91 471 2320342
Interactive Map Placeholder
);
// --- Sub-Views (Chitranjali Studio) ---
const ChitranjaliView = () => (