"use client"; import { motion } from "framer-motion"; import { Diamond, Users, Trophy, Palette, Heart } from "lucide-react"; import Link from "next/link"; const stats = [ { number: "500+", label: "Expected Participants" }, { number: "3", label: "Categories" }, { number: "₹50K+", label: "Prize Pool" }, { number: "1", label: "Week of Creativity" }, ]; const values = [ { icon: Palette, title: "Creativity", description: "We celebrate original thinking and artistic expression in all its forms.", }, { icon: Users, title: "Community", description: "Building connections between artists and art enthusiasts across SJEC.", }, { icon: Trophy, title: "Excellence", description: "Recognizing and rewarding outstanding artistic talent and dedication.", }, { icon: Heart, title: "Inclusivity", description: "Welcoming artists of all skill levels and artistic backgrounds.", }, ]; const timeline = [ { date: "Feb 15, 2026", event: "Registration Opens", status: "completed" }, { date: "Feb 21, 2026", event: "Submissions Begin", status: "active" }, { date: "Feb 28, 2026", event: "Submission Deadline", status: "upcoming" }, { date: "Mar 1-5, 2026", event: "Public Voting", status: "upcoming" }, { date: "Mar 7, 2026", event: "Winners Announced", status: "upcoming" }, ]; export default function AboutPage() { return (
{/* Hero Section */}
ABOUT US

Celebrating Art at SJEC

ArtSplash is St. Joseph Engineering College's premier art competition, brought to you by Sceptix — the official technical club. We're on a mission to discover, celebrate, and showcase the incredible artistic talent within our community.

{/* Stats Section */}
{stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
{/* Mission Section */}
OUR MISSION

Empowering Artists,
Inspiring Creativity

ArtSplash was created to provide a platform where students can express their creativity, gain recognition for their work, and connect with fellow artists. Whether you're a digital artist, traditional painter, or poster designer, there's a place for you here.

Our competition is open to all SJEC students who want to showcase their artistic talents. The public voting system ensures that the community has a voice in celebrating the best artworks.

{values.map((value, index) => (

{value.title}

{value.description}

))}
{/* Timeline Section */}
EVENT TIMELINE

Important Dates

{/* Timeline Line */}
{timeline.map((item, index) => (
{item.date}
{item.event}
{item.status === "active" ? "In Progress" : item.status === "completed" ? "Completed" : "Upcoming"}
{/* Center Dot */}
))}
{/* Organized By Section */}
ORGANIZED BY
SCEPTIX

Sceptix is the official technical club of St. Joseph Engineering College, dedicated to fostering innovation, creativity, and technical excellence among students.

JOIN ARTSPLASH CONTACT US
); }