diff --git a/src/pages/Calendar.js b/src/pages/Calendar.js index 22669d0..e330d6e 100644 --- a/src/pages/Calendar.js +++ b/src/pages/Calendar.js @@ -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! 🎃 👻 🍫' }, diff --git a/src/pages/Sponsors.js b/src/pages/Sponsors.js index 0990904..cb2c893 100644 --- a/src/pages/Sponsors.js +++ b/src/pages/Sponsors.js @@ -2,10 +2,8 @@ import { useEffect } from 'react'; import '../styles/Sponsors.css'; import verisk_logo from '../assets/sponsor_logos/verisk_logo.png'; import ukg_logo from '../assets/sponsor_logos/ukg_logo.png'; -import hubspot_logo from '../assets/sponsor_logos/hubspot_logo.png'; import draftkings_logo from '../assets/sponsor_logos/draftkings_logo.svg'; -import stripe_logo from '../assets/sponsor_logos/stripe_logo.png'; -import akamai_logo from '../assets/sponsor_logos/akamai_logo.png'; + function Sponsors() { useEffect(() => { @@ -16,15 +14,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' } - ], - 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' } + { 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' } ], - bronze: [ - ] + silver: [ ], + bronze: [ ] }; const renderSponsors = (tier, sponsors) => ( @@ -53,10 +46,9 @@ function Sponsors() { return (