diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 7456740..a1e264b 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -12,7 +12,7 @@ export function Footer() {
Celebrating 50 years of Computer Science House. - Join us for a weekend of memories, connections, and innovation. + Join us for a weekend of memories, connections, and celebration.
diff --git a/src/index.css b/src/index.css index 049c3ba..59a57ac 100644 --- a/src/index.css +++ b/src/index.css @@ -136,6 +136,17 @@ } } +@keyframes fadeInUp { + 0% { + opacity: 0; + transform: translateY(40px) scale(0.9); + } + 100% { + opacity: 1; + transform: translateY(0) scale(1); + } +} + @keyframes scale-in { from { opacity: 0; diff --git a/src/pages/FAQ.tsx b/src/pages/FAQ.tsx index 20d3530..01bc0da 100644 --- a/src/pages/FAQ.tsx +++ b/src/pages/FAQ.tsx @@ -82,7 +82,7 @@ const faqCategories = [ }, { question: "Where is the gala dinner being held?", - answer: "The Saturday evening gala dinner will be held at VENUE in Rochester. Exact address and directions will be provided closer to the event.", // PLACEHOLDER: Replace VENUE with actual venue name + answer: "The Saturday evening gala dinner will be held at The Wintergarden in Rochester. Exact address and directions will be provided closer to the event.", }, { question: "Can I attend just the gala dinner?", diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 7a7a3e8..13696e4 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -3,8 +3,20 @@ import { CountdownTimer } from "@/components/CountdownTimer"; import { Button } from "@/components/ui/button"; import { Link } from "react-router-dom"; import { Ticket, Calendar, MapPin, Users, ArrowRight, Sparkles } from "lucide-react"; +import { useState, useEffect } from "react"; const Index = () => { + const [wordIndex, setWordIndex] = useState(0); + const words = ["Remember", "Celebrate", "Reconnect"]; + + useEffect(() => { + const interval = setInterval(() => { + setWordIndex((prev) => (prev + 1) % words.length); + }, 3000); // Change word every 3 seconds + + return () => clearInterval(interval); + }, []); + return (- Celebrating 50 years of innovation, community, and excellence at - Computer Science House. Join 500+ alumni and members for an unforgettable weekend. + Celebrating 50 years of Computer Science House. Join us for an unforgettable celebration.
{/* CTA Buttons */} @@ -81,10 +92,10 @@ const Index = () => {- Three days of events, reconnections, and celebrations with the CSH community. + Three days of events, reconnections, and celebrations with CSH.
- Kick off the weekend with arrival, registration, and casual meetups with fellow alumni. + Kick off the weekend with campus and floor tours, photo hunt, and a happy hour with fellow alumni.
View Schedule- {/* PLACEHOLDER: Update venue name when confirmed */} - The main event! Tours, activities during the day, and formal dinner at VENUE in the evening. + Celebrate 5 decades of CSH with a formal dinner at The Wintergarden.
View Events{/* PLACEHOLDER: Update venue name and details when confirmed */} - Join us for an elegant evening celebrating five decades of CSH at VENUE. - Enjoy a formal dinner, keynote speeches, awards ceremony, and time to reconnect - with friends old and new. + Join us at The Wintergarden for an elegant evening, celebrating five decades of CSH. + Enjoy a formal dinner, keynote speeches, and time to reconnect with friends old and new.
- See all events and times across the weekend + See the timing for all events during the weekend