diff --git a/frontend/app/aboutus/page.tsx b/frontend/app/aboutus/page.tsx index 2883dff..0551af5 100644 --- a/frontend/app/aboutus/page.tsx +++ b/frontend/app/aboutus/page.tsx @@ -1,5 +1,5 @@ import Navbar from '@/components/Navbar'; -import AboutSection from '@/components/AboutSection'; +import AboutSection from '@/app/home/AboutSection'; import ExecutiveSection from '@/components/ExecutiveSection'; import Footer from '@/components/Footer'; diff --git a/frontend/app/home/MainSection.tsx b/frontend/app/home/MainSection.tsx index 19dee92..3a0b340 100644 --- a/frontend/app/home/MainSection.tsx +++ b/frontend/app/home/MainSection.tsx @@ -5,7 +5,7 @@ import { useState } from "react"; export default function MainSection() { const [active, setActive] = useState(0); - const photos = ["/photi1.png", "/photi2.png", "/photi3.png"]; + const photos = ["/home-shuffle/1.JPG", "/home-shuffle/2.jpg", "/home-shuffle/3.jpeg"]; return (
{/* CONTENT */} -
+

WiCSM

-

UTSC

+

Women in Computer Science, Statistics & Mathematics

-

- Motto, saying Motto, saying Motto, saying Motto, saying +

+ University of Toronto Scarborough

{/* PHOTO STACK */}
setActive((prev) => (prev + 1) % photos.length)} - className="relative cursor-pointer group order-1 md:order-2 md:mr-15" + className="relative cursor-pointer group order-1 md:order-2" > -
+
{/* GLOW */}
-
+
{/* TITLE */}
- JOIN OUR NEXT EVENT + DATA BITES
{/* CONTENT */}
-

- Short description or hook regarding joining our next event.Learn, - connect, and grow with the WiCSM community. -

+
+

+ Data Bites is WiCSM's flagship networking event, designed to connect students with industry professionals in a setting that feels approachable, honest, and genuinely useful. +

+

+ Each year, we bring together students from across programs and universities with professionals working in roles like software engineering, data science, consulting, project management, academia, and more. The goal is simple: to make career exploration less intimidating and more human. +

+

+ With ~100 attendees annually, Data Bites creates space for students to ask questions, build connections, and gain clarity on what comes next, whether that's their first internship or a long-term career direction. +

+
{/* RIGHT CARD */}
- {/* Placeholder — swap later */} -
Event Image
- - {/* Next Event - */}
diff --git a/frontend/app/home/OurValuesSection.tsx b/frontend/app/home/OurValuesSection.tsx index a64e9d8..5173549 100644 --- a/frontend/app/home/OurValuesSection.tsx +++ b/frontend/app/home/OurValuesSection.tsx @@ -1,6 +1,6 @@ import SectionHeader from "@/components/SectionHeader"; import ValueCard from "@/components/ValueCard"; -import { Lightbulb, Rocket, Users } from "lucide-react"; +import { Lightbulb, Heart, Users } from "lucide-react"; export default function OurValuesSection() { return ( @@ -31,8 +31,8 @@ export default function OurValuesSection() { icon={
diff --git a/frontend/app/home/SupportMissionSection.tsx b/frontend/app/home/SupportMissionSection.tsx index 1e98b72..0daefd0 100644 --- a/frontend/app/home/SupportMissionSection.tsx +++ b/frontend/app/home/SupportMissionSection.tsx @@ -1,28 +1,40 @@ +import Image from "next/image"; +import Link from "next/link"; import SectionHeader from "@/components/SectionHeader"; export default function SupportMissionSection() { return ( -
-
+
+
{/* LEFT: Image / placeholder */}
+ className="relative w-[250px] h-[250px] md:w-[360px] md:h-[360px] rounded-3xl overflow-hidden + shadow-[0_0_40px_rgba(155,147,232,0.6)] shrink-0" + > + WiCSM Sponsor +
{/* RIGHT: Text + CTA */} -
- - SUPPORT OUR MISSION - +
+ SUPPORT OUR MISSION -

- 1–2 liner catch/hook, then say join us etc blah blah. +

+ Support WiCSM in creating spaces where students can explore careers, build connections, and grow with confidence. +

+

+ Partner with us to engage with emerging talent and make a meaningful impact.

- +
diff --git a/frontend/app/home/WhoSection.tsx b/frontend/app/home/WhoSection.tsx index 6ae43cf..dbc87e8 100644 --- a/frontend/app/home/WhoSection.tsx +++ b/frontend/app/home/WhoSection.tsx @@ -34,6 +34,9 @@ export default function WhoWeAreSection() {
WHO WE ARE +

+ WiCSM (Women in Computer Science, Statistics & Mathematics) is a student-led community at the University of Toronto Scarborough dedicated to empowering women and underrepresented groups in STEM. We create opportunities for learning, mentorship, and connection through events, workshops, and collaborations. +

{/* VIEWPORT */} diff --git a/frontend/components/Footer.tsx b/frontend/components/Footer.tsx index 41a2f85..63e9eaa 100644 --- a/frontend/components/Footer.tsx +++ b/frontend/components/Footer.tsx @@ -1,7 +1,31 @@ import Image from "next/image"; import Link from "next/link"; +import { FaDiscord, FaFacebook, FaInstagram, FaLinkedinIn } from "react-icons/fa"; export default function Footer() { + const socials = [ + { + name: "Instagram", + href: "https://www.instagram.com/wicsm.utsc/", + Icon: FaInstagram, + }, + { + name: "Facebook", + href: "https://www.facebook.com/WiCSM.UTSC/", + Icon: FaFacebook, + }, + { + name: "Discord", + href: "https://discord.com/invite/QgfWQqh6Fa", + Icon: FaDiscord, + }, + { + name: "LinkedIn", + href: "https://www.linkedin.com/company/wicsm-utsc/", + Icon: FaLinkedinIn, + }, + ]; + return (
@@ -21,15 +45,15 @@ export default function Footer() { WiCSM

- Women in Computer Science, Statistics and Mathematics UTSC + Women in Computer Science, Statistics & Mathematics @ UTSC

{/* Quick Links */} -
+
Home - About + About Events Contact
@@ -47,12 +71,17 @@ export default function Footer() {

diff --git a/frontend/components/Navbar.tsx b/frontend/components/Navbar.tsx index bc05ee2..767c1b9 100644 --- a/frontend/components/Navbar.tsx +++ b/frontend/components/Navbar.tsx @@ -6,7 +6,7 @@ import { useState } from "react"; const navItems = [ { href: "/", label: "HOME" }, - { href: "/about", label: "ABOUT" }, + { href: "/aboutus", label: "ABOUT" }, { href: "/events", label: "EVENTS" }, { href: "/contact", label: "CONTACT" }, ]; @@ -15,7 +15,7 @@ export default function Navbar() { const [open, setOpen] = useState(false); return ( -