Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/pages/Calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ function CalendarPage() {
const [selectedEvent, setSelectedEvent] = useState(null);

const events = [
{ title: 'Gecko Robotics Tech Talk', date: '2025-10-07', time: '7-8 pm', location: 'Richards Hall, Room 300', description: 'Hear about the career journey of a Gecko Robotics employee and the perks of working there!'},
{ title: 'Mentor/ Mentee Mixer', date: '2025-09-25', time: '7-8 pm', location: 'Richards Hall, Room 226', description: 'NUWIT is launching its Mentor/Mentee program! Come to learn more about the program and how to get involved!' },
{ title: 'UKG - Lunch N Learn', date: '2025-09-24', time: '11-1 pm', location: 'Curry Student Center, Room 340', description: 'Grab a bite, discover opportunities at UKG, and connect with their team!'},
{ title: 'Verisk Tech Talk', date: '2025-09-23', time: '7-8 pm', location: 'Richards Hall, Room 300', description: 'Learn about navigating the corporate tech lifestyle and what doing a co-op at Verisk is like!' },
{ title: 'Datadog Tech Talk', date: '2025-09-16', time: '6:30-7:30 pm', location: 'Richards Hall, Room 300', description: 'Curious about life at a fast-paced tech company? Join us to hear from a Datadog engineer and recruiter, and get career advice!' },
{ title: 'Welcome Meeting - Bingo Night + Info Session', date: '2025-09-09', time: '7-8 pm', location: 'Richards Hall, Room 300', description: 'Come hang out with the NUWIT community and play Bingo. Meet new members, win prizes, and enjoy delicious food from Anna’s Taqueria Taco Bar!' },
{ title: 'Fall Fest', date: '2025-09-02', time: '12-4pm', location: 'Near WV-H, table 541', description: 'Learn about the club, chat with members, and pick up some NUWIT stickers!' },
{ title: 'Halloween Movie Night', date: '2024-10-29', time: '7-8 pm', location: 'Richards Hall, Room 300', description: 'Tired of studying for midterms and looking for a fun way to relax? Get into the spooky spirit and join us to watch a halloween movie! Vote for the movie on the slack channel !! Snacks and candy will be provided! 🎃 👻 🍫' },
Expand Down
14 changes: 4 additions & 10 deletions src/pages/Sponsors.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,10 @@ function Sponsors() {
gold: [
{ logo: verisk_logo, name: 'Verisk', description: 'Verisk is a data analytics and risk assessment company that provides advanced data insights and analytics solutions for insurance, energy, financial services, and government clients worldwide.', url: 'https://www.verisk.com' },
{ logo: ukg_logo, name: 'UKG', description: 'UKG offers human capital management, payroll, and workforce management solutions, enabling businesses to manage employee experience, timekeeping, and compliance in a streamlined, people-focused way.', url: 'https://www.ukg.com' },
{ logo: hubspot_logo, name: 'HubSpot', description: 'HubSpot is a customer relationship management (CRM) platform that offers tools for marketing, sales, customer service, and content management, focusing on helping businesses grow through inbound marketing strategies.', url: 'https://www.hubspot.com' }
{ logo: draftkings_logo, name: 'DraftKings', description: ' DraftKings is a digital sports entertainment and gaming company, best known for its daily fantasy sports platform, sports betting services, and online casino games.', url: 'https://www.draftkings.com' }
],
silver: [
{ logo: draftkings_logo, name: 'DraftKings', description: ' DraftKings is a digital sports entertainment and gaming company, best known for its daily fantasy sports platform, sports betting services, and online casino games.', url: 'https://www.draftkings.com' },
{ logo: stripe_logo, name: 'Stripe', description: 'Stripe is a financial services and software company that provides payment processing solutions for online businesses, enabling them to accept payments, manage transactions, and expand global financial operations.', url: 'https://stripe.com' },
{ logo: akamai_logo, name: 'Akamai', description: 'Akamai is a content delivery network (CDN) and cybersecurity services provider, helping companies deliver fast, secure web experiences through optimized cloud solutions, DDoS protection, and threat management services.', url: 'https://www.akamai.com' }
],
bronze: [
]
silver: [ ],
bronze: [ ]
};

const renderSponsors = (tier, sponsors) => (
Expand Down Expand Up @@ -53,10 +48,9 @@ function Sponsors() {
return (
<div>
<div className="sponsors-title">
<h1>2024-2025 Sponsors</h1>
<h1>2025-2026 Sponsors</h1>
</div>
{renderSponsors('gold', sponsors.gold)}
{renderSponsors('silver', sponsors.silver)}
</div>
);
}
Expand Down