Skip to content

Commit c20e6a3

Browse files
authored
Merge pull request #15 from ComputerScienceHouse/develop
Update text on website
2 parents fefffeb + e3b9750 commit c20e6a3

4 files changed

Lines changed: 34 additions & 14 deletions

File tree

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function Footer() {
1212
</span>
1313
<p className="mt-4 text-muted-foreground max-w-md">
1414
Celebrating 50 years of Computer Science House.
15-
Join us for a weekend of memories, connections, and innovation.
15+
Join us for a weekend of memories, connections, and celebration.
1616
</p>
1717
</div>
1818

src/index.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,17 @@
136136
}
137137
}
138138

139+
@keyframes fadeInUp {
140+
0% {
141+
opacity: 0;
142+
transform: translateY(40px) scale(0.9);
143+
}
144+
100% {
145+
opacity: 1;
146+
transform: translateY(0) scale(1);
147+
}
148+
}
149+
139150
@keyframes scale-in {
140151
from {
141152
opacity: 0;

src/pages/FAQ.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const faqCategories = [
8282
},
8383
{
8484
question: "Where is the gala dinner being held?",
85-
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
85+
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.",
8686
},
8787
{
8888
question: "Can I attend just the gala dinner?",

src/pages/Index.tsx

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,20 @@ import { CountdownTimer } from "@/components/CountdownTimer";
33
import { Button } from "@/components/ui/button";
44
import { Link } from "react-router-dom";
55
import { Ticket, Calendar, MapPin, Users, ArrowRight, Sparkles } from "lucide-react";
6+
import { useState, useEffect } from "react";
67

78
const Index = () => {
9+
const [wordIndex, setWordIndex] = useState(0);
10+
const words = ["Remember", "Celebrate", "Reconnect"];
11+
12+
useEffect(() => {
13+
const interval = setInterval(() => {
14+
setWordIndex((prev) => (prev + 1) % words.length);
15+
}, 3000); // Change word every 3 seconds
16+
17+
return () => clearInterval(interval);
18+
}, []);
19+
820
return (
921
<Layout>
1022
{/* Notice Banner */}
@@ -44,8 +56,7 @@ const Index = () => {
4456

4557
{/* Subheadline */}
4658
<p className="text-lg md:text-xl text-muted-foreground max-w-2xl mx-auto mb-8 animate-fade-up" style={{ animationDelay: "0.2s" }}>
47-
Celebrating 50 years of innovation, community, and excellence at
48-
Computer Science House. Join 500+ alumni and members for an unforgettable weekend.
59+
Celebrating 50 years of Computer Science House. Join us for an unforgettable celebration.
4960
</p>
5061

5162
{/* CTA Buttons */}
@@ -82,10 +93,10 @@ const Index = () => {
8293
<div className="container mx-auto px-4">
8394
<div className="text-center mb-16">
8495
<h2 className="text-3xl md:text-5xl font-display font-bold mb-4">
85-
A Weekend to <span className="text-gradient">Remember</span>
96+
A Weekend to <span className="text-gradient inline-block min-w-[200px] animate-[fadeInUp_0.6s_ease-out]" key={wordIndex} style={{ animation: 'fadeInUp 0.6s ease-out' }}>{words[wordIndex]}</span>
8697
</h2>
8798
<p className="text-muted-foreground max-w-2xl mx-auto">
88-
Three days of events, reconnections, and celebrations with the CSH community.
99+
Three days of events, reconnections, and celebrations with CSH.
89100
</p>
90101
</div>
91102

@@ -97,7 +108,7 @@ const Index = () => {
97108
</div>
98109
<h3 className="text-xl font-display font-semibold mb-2">Friday, April 10</h3>
99110
<p className="text-muted-foreground mb-4">
100-
Kick off the weekend with arrival, registration, and casual meetups with fellow alumni.
111+
Kick off the weekend with campus and floor tours, photo hunt, and a happy hour with fellow alumni.
101112
</p>
102113
<Link to="/schedule" className="text-csh-magenta hover:text-csh-red transition-colors font-medium inline-flex items-center gap-1">
103114
View Schedule <ArrowRight className="w-4 h-4" />
@@ -111,8 +122,7 @@ const Index = () => {
111122
</div>
112123
<h3 className="text-xl font-display font-semibold mb-2">Saturday, April 11</h3>
113124
<p className="text-muted-foreground mb-4">
114-
{/* PLACEHOLDER: Update venue name when confirmed */}
115-
The main event! Tours, activities during the day, and formal dinner at VENUE in the evening.
125+
Celebrate 5 decades of CSH with a formal dinner at The Wintergarden.
116126
</p>
117127
<Link to="/events" className="text-csh-magenta hover:text-csh-red transition-colors font-medium inline-flex items-center gap-1">
118128
View Events <ArrowRight className="w-4 h-4" />
@@ -153,9 +163,8 @@ const Index = () => {
153163
</h2>
154164
<p className="text-muted-foreground mb-6">
155165
{/* PLACEHOLDER: Update venue name and details when confirmed */}
156-
Join us for an elegant evening celebrating five decades of CSH at VENUE.
157-
Enjoy a formal dinner, keynote speeches, awards ceremony, and time to reconnect
158-
with friends old and new.
166+
Join us at The Wintergarden for an elegant evening, celebrating five decades of CSH.
167+
Enjoy a formal dinner, keynote speeches, and time to reconnect with friends old and new.
159168
</p>
160169
<div className="space-y-3">
161170
<div className="flex items-center gap-3 text-muted-foreground">
@@ -165,7 +174,7 @@ const Index = () => {
165174
<div className="flex items-center gap-3 text-muted-foreground">
166175
<MapPin className="w-5 h-5 text-csh-magenta" />
167176
{/* PLACEHOLDER: Update venue name and address when confirmed */}
168-
<span>VENUE • Rochester, NY</span>
177+
<span>The Wintergarden • Rochester, NY</span>
169178
</div>
170179
<div className="flex items-center gap-3 text-muted-foreground">
171180
<Users className="w-5 h-5 text-csh-magenta" />
@@ -209,7 +218,7 @@ const Index = () => {
209218
Full Schedule
210219
</h3>
211220
<p className="text-sm text-muted-foreground">
212-
See all events and times across the weekend
221+
See the timing for all events during the weekend
213222
</p>
214223
</div>
215224
</Link>

0 commit comments

Comments
 (0)