import { motion } from 'framer-motion'; import { Link } from 'react-router-dom'; import { ArrowRight, Sparkles, BookOpen, Bot, GraduationCap, CheckCircle, Zap, Shield, Brain } from 'lucide-react'; import SectionTitle from '@/components/SectionTitle/SectionTitle'; import StatsCard from '@/components/StatsCard/StatsCard'; import FeatureCard from '@/components/FeatureCard/FeatureCard'; import FloatingCard from '@/components/FloatingCard/FloatingCard'; import ChatPreview from '@/components/ChatPreview/ChatPreview'; import { StaggerContainer, StaggerItem } from '@/components/AnimatedContainer/AnimatedContainer'; import AnimatedContainer from '@/components/AnimatedContainer/AnimatedContainer'; import { STATS, FEATURES, CAMPUS_LOCATIONS } from '@/constants'; import * as LucideIcons from 'lucide-react'; export default function Home() { return (
{/* ─── Hero Section ─────────────────────────────────────────────────────── */}
{/* Background Decoration */}
{/* Left – Visual Section (RIT Events Hub Style) */}
{/* Main campus image/graphic card with soft blurry drop shadow */}
Rajalakshmi Institute of Technology Campus {/* Subtle dark gradient overlay to ensure text contrast */}
{/* Text on top of the image (RIT Events Hub Style) */}

Rajalakshmi Institute

of Technology, Chennai

Est. 2008 • NBA & NAAC A+
{/* Right – Text Content */}
OUR LEGACY & FUTURE Welcome to
RIT Freshers Hub
The RIT Freshers Hub is your centralized gateway to campus life, designed to simplify how you discover and participate in academic and extracurricular activities. With seamless access to notes, PYQs, AI assistant, and bus routes, we ensure you have everything needed to succeed. Explore Hub Ask AI Assistant {/* Badges positioned cleanly below buttons with more breathing room */} {[ { icon: CheckCircle, text: 'Official Portal' }, { icon: Zap, text: 'Instant AI Support' }, { icon: Shield, text: 'Student Verified' }, ].map((badge, i) => (
{badge.text}
))}
{/* ─── Stats Section ────────────────────────────────────────────────────── */}
{STATS.map((stat, i) => ( ))}
{/* ─── Features Section ─────────────────────────────────────────────────── */}
{FEATURES.map((feature) => ( ))}
{/* ─── AI Section ───────────────────────────────────────────────────────── */}
{/* Left – Text */}
AI-Powered

Your 24/7{' '} Campus Guide

Ask anything about RIT — from admission documents to canteen timings. Our AI assistant, powered by Google Gemini with campus-specific knowledge, gives you instant, accurate answers.

{[ { icon: 'Brain', label: 'Gemini AI', desc: 'State-of-the-art AI' }, { icon: 'Database', label: 'RAG System', desc: 'Campus knowledge base' }, { icon: 'Map', label: 'Campus Context', desc: 'RIT-specific answers' }, { icon: 'Zap', label: 'Instant Answers', desc: 'No wait time' }, ].map((item, i) => { const Icon = (LucideIcons as unknown as Record>)[item.icon]; return (
{Icon && }
{item.label}
{item.desc}
); })}
Try AI Assistant
{/* Right – Chat Preview */}
{/* ─── Campus Quick Nav ─────────────────────────────────────────────────── */}
{/* Map placeholder */}
{/* Location pins */} {[ { label: 'CSE Block', x: '25%', y: '30%' }, { label: 'Library', x: '55%', y: '45%' }, { label: 'Canteen', x: '70%', y: '65%' }, { label: 'Hostel', x: '20%', y: '65%' }, ].map((pin, i) => (
{pin.label} ))}
Interactive Campus Map
Open Full Map
{/* Quick nav buttons */}
{CAMPUS_LOCATIONS.map((loc) => { const Icon = (LucideIcons as unknown as Record>)[loc.icon]; return (
{Icon && }
{loc.name}
); })}
{/* ─── Community Teaser ─────────────────────────────────────────────────── */}
{/* Q&A teaser */}

Freshers Q&A

Get answers from seniors

{['How is hostel life at RIT?', 'Best clubs to join as a fresher?', 'Tips for first semester survival'].map((q, i) => (
Q {q}
))}
Join the Discussion
{/* Anonymous Confession Teaser */}

Anonymous Confessions

Share without revealing identity

{[ { text: "I went to the wrong department on my first day 😅", reactions: 87 }, { text: "The library WiFi is faster than my home connection 😂", reactions: 134 }, ].map((c, i) => (

{c.text}

{c.reactions}
))}
100% Anonymous. No tracking. No identity revealed.
Confess Anonymously
); }