diff --git a/src/components/board/Filter.astro b/src/components/board/Filter.astro index a829fb9..353090a 100644 --- a/src/components/board/Filter.astro +++ b/src/components/board/Filter.astro @@ -2,18 +2,18 @@ const { filters, currentFilter } = Astro.props; --- -
+
{ filters.map((filter) => (
-

{name}

{position}
-

+
diff --git a/src/components/board/Officers.astro b/src/components/board/Officers.astro index 018ea99..a5319ae 100644 --- a/src/components/board/Officers.astro +++ b/src/components/board/Officers.astro @@ -15,51 +15,50 @@ const currentFilter = "All"; ---
-
- About background image - About image -
+
+ About background image + About image +
-
- -

MEET THE BOARD

-
+
+ +

MEET THE BOARD

+
-

- Our board comprises 31 students of varying majors, colleges, and - interests! Feel free to reach out for any questions about our position - or experiences. -

+

+ Our board comprises 31 students of varying majors, colleges, and interests! + Feel free to reach out for any questions about our position or experiences. +

- + -
- { - officers.map((officer) => ( -
- -
- )) - } -
+
+ { + officers.map((officer) => ( +
+ +
+ )) + } +
diff --git a/src/components/core/Navbar.astro b/src/components/core/Navbar.astro index d046f60..b60eb09 100644 --- a/src/components/core/Navbar.astro +++ b/src/components/core/Navbar.astro @@ -4,146 +4,151 @@ import whiteLogoHorizontal from "../../images/logos/white_logo_horizontal.svg"; import pages from "../../data/pages.json"; --- -
-
- +
+
+ + + IEEE UCSD Logo + - - - - + + + +
diff --git a/src/components/core/Title.astro b/src/components/core/Title.astro index a4f7cd6..bf683d8 100644 --- a/src/components/core/Title.astro +++ b/src/components/core/Title.astro @@ -1,11 +1,13 @@ --- -const {title} = Astro.props; +const { title } = Astro.props; import { LiaDotCircle } from "react-icons/lia"; --- -
- -

- {title} -

-
\ No newline at end of file +
+ +

+ {title} +

+
diff --git a/src/components/events/Calendar.jsx b/src/components/events/Calendar.jsx index 25c4245..80c271e 100644 --- a/src/components/events/Calendar.jsx +++ b/src/components/events/Calendar.jsx @@ -234,7 +234,7 @@ const Calendar = ({ CALENDAR_API_KEY, EVENT_CALENDAR_ID }) => { return (
{/* Hovering Calendar Header */} diff --git a/src/components/events/EventList.jsx b/src/components/events/EventList.jsx index 2f8f0d1..a6f459c 100644 --- a/src/components/events/EventList.jsx +++ b/src/components/events/EventList.jsx @@ -1,18 +1,18 @@ import React, { useEffect, useState } from "react"; const UpcomingEvent = ({ name, location, date, time, delay, description }) => ( -
+

{name}

-

Location: {location}

+ Location: {location} {date && ( <>
@@ -28,11 +28,11 @@ const UpcomingEvent = ({ name, location, date, time, delay, description }) => (

{description}

-
+
); diff --git a/src/components/events/EventTitle.astro b/src/components/events/EventTitle.astro index 3ce4fcf..6ee13aa 100644 --- a/src/components/events/EventTitle.astro +++ b/src/components/events/EventTitle.astro @@ -4,37 +4,37 @@ import eventbg from "../../images/eventbg.webp"; import { LiaDotCircle } from "react-icons/lia"; --- -
-
-
-
- Event Page Background -
+
+
- -

EVENTS

+ Event Page Background +
+
+ +

EVENTS

+
diff --git a/src/components/events/UpcomingEvents.astro b/src/components/events/UpcomingEvents.astro index e2bc77f..f5e4cad 100644 --- a/src/components/events/UpcomingEvents.astro +++ b/src/components/events/UpcomingEvents.astro @@ -1,21 +1,20 @@ --- -import UpcomingEvent from "./UpcomingEvent.astro"; import { LiaDotCircle } from "react-icons/lia"; import EventList from "./EventList.jsx"; const CALENDAR_API_KEY = import.meta.env.CALENDAR_API_KEY; const EVENT_CALENDAR_ID = import.meta.env.EVENT_CALENDAR_ID; --- -
-
+
+
-
+

Upcoming
Events

-

+

SCROLL DOWN TO SEE THE UPCOMING EVENTS FOR IEEE!

diff --git a/src/components/find/FindTitle.astro b/src/components/find/FindTitle.astro index d3d37ae..0d502ba 100644 --- a/src/components/find/FindTitle.astro +++ b/src/components/find/FindTitle.astro @@ -3,22 +3,32 @@ import Link from "next/link"; import { LiaDotCircle } from "react-icons/lia"; --- -
-
-
- -

- Contact Us -

-
-

- The IEEE Project Space is an open-access, collaborative space located at EBU1-4710. Students can do homework or get access to basic electronic tools such as soldering stations, breadboard components, and Arduino and Raspberry PI parts! -

-
- - DISCORD - -
- +
+
+
+ +

Contact Us

-
\ No newline at end of file +

+ The IEEE Project Space is an open-access, collaborative space located at EBU1-4710. Students can + do homework or get access to basic electronic tools such as soldering stations, + breadboard components, and Arduino and Raspberry PI parts! +

+
+ + DISCORD + +
+
+
diff --git a/src/components/join/JoinTitle.astro b/src/components/join/JoinTitle.astro index 988e775..f2222fc 100644 --- a/src/components/join/JoinTitle.astro +++ b/src/components/join/JoinTitle.astro @@ -3,22 +3,35 @@ import Link from "next/link"; import { LiaDotCircle } from "react-icons/lia"; --- -
-
-
- -

- Join Us -

-
-

- The IEEE Project Space is an open-access, collaborative space located at EBU1-4710. Students can do homework or get access to basic electronic tools such as soldering stations, breadboard components, and Arduino and Raspberry PI parts! -

-
- - JOIN - -
- +
+
+
+ +

Join Us

-
\ No newline at end of file +

+ The IEEE Project Space is an open-access, collaborative space located at EBU1-4710. Students can + do homework or get access to basic electronic tools such as soldering stations, + breadboard components, and Arduino and Raspberry PI parts! +

+
+ + JOIN + +
+
+
diff --git a/src/components/main_page/Divider.astro b/src/components/main_page/Divider.astro index e7f536d..a34a38f 100644 --- a/src/components/main_page/Divider.astro +++ b/src/components/main_page/Divider.astro @@ -1,14 +1,24 @@
-
-

- 02 -

-

- 2nd Largest in the US? -

- -
-

- The community of engineers at IEEE @ UCSD has consistently been one of the largest in the country. In 2021 and 2022, we won the 2nd Largest Student Branch Award in the US and we strive to win it again in the coming year. +

+

+ 02

-
+

+ 2nd Largest in the US? +

+
+

+ The community of engineers at IEEE @ UCSD has consistently been one of the + largest in the country. In 2021 and 2022, we won the 2nd Largest Student + Branch Award in the US and we strive to win it again in the coming year. +

+
diff --git a/src/components/main_page/Landing.astro b/src/components/main_page/Landing.astro index 8590395..3f2a599 100644 --- a/src/components/main_page/Landing.astro +++ b/src/components/main_page/Landing.astro @@ -7,66 +7,65 @@ import { RiInstagramFill } from "react-icons/ri"; import { MdEmail } from "react-icons/md"; --- -
-
+
+

-

- UC San Diego IEEE -

-

- Join one of the largest IEEE student branch in the US! -

-

- IEEE @ UCSD is a pre-professional organization aiming to empower - engineers with practical experience through hands-on project - opportunities, insightful workshops, and panels with industry - professionals. We are a branch organization of the International - IEEE organization. -

- -
-
- - - - - - - - - - -
-
-
-
+

- circuit + Join one of the largest IEEE student branch in the US! +

+

+ IEEE @ UCSD is a pre-professional organization aiming to empower engineers + with practical experience through hands-on project opportunities, + insightful workshops, and panels with industry professionals. We are a + branch organization of the International IEEE organization. +

+ +
+
+ + + + + + + + + + +
+
+
+ circuit +
diff --git a/src/components/projects/AP.astro b/src/components/projects/AP.astro index cd7e5c1..be158d9 100644 --- a/src/components/projects/AP.astro +++ b/src/components/projects/AP.astro @@ -4,29 +4,25 @@ import ProjectSection from "./ProjectSection.astro"; --- -
-
+
+

Annual Projects

-

- Erat hendrerit tristique erat; parturient cursus fringilla feugiat. - Eget faucibus fames ridiculus nec egestas convallis cubilia malesuada. - Tellus nibh vivamus tempus molestie tristique quis +

+ Join in the fray of internationally-recognized competition through Robocup, Signal Processing, Supercomputing, and Micromouse at IEEE @ UCSD! Participate in an intensive collaborative environment that challenges hard skills of hardware and software.

-
- -

- ridiculus nec egestas +

+ +

+ Skills & Requirements

- Erat hendrerit tristique erat; parturient cursus fringilla feugiat. - Eget faucibus fames ridiculus nec egestas convallis cubilia malesuada. - Tellus nibh vivamus tempus molestie tristique quis + IEEE @ UCSD’s annual projects are intended for students with intermediate experience with hardware or software. Participation on teams assemble an array of skills and talents of soft and hard skills.

diff --git a/src/components/projects/ProjectSection.astro b/src/components/projects/ProjectSection.astro index 5b4ba1b..8b15931 100644 --- a/src/components/projects/ProjectSection.astro +++ b/src/components/projects/ProjectSection.astro @@ -6,151 +6,151 @@ import { IoIosArrowDroprightCircle } from "react-icons/io"; import { Image } from "astro:assets"; --- -
- { - Object.entries(annualProjects).map(([title, project], index) => ( - -
-
- {`${title} -
-
-
-

- {title} -

- - -
- -
+
+ { + Object.entries(annualProjects).map(([title, project], index) => ( + + diff --git a/src/components/projects/QP.astro b/src/components/projects/QP.astro index cbdc7c9..74eee7b 100644 --- a/src/components/projects/QP.astro +++ b/src/components/projects/QP.astro @@ -6,57 +6,51 @@ import qp from "../../images/qp.webp"; import { IoIosArrowDroprightCircle } from "react-icons/io"; --- -
-
- -

Quarterly Project

-
-
-
-
- qp showcase photo -
- - more details - - -
-

Quarterly Project

-

- Getting started on hardware development or want to make your own - project? Need something to put on your resume? IEEE's Quarterly - Projects aims to provide students with project experience in a span - of 10 weeks. Check out QP page for more detail! -

+
+
+ +

Quarterly Project

+
+
+
+ qp showcase photo +
+ + more details + + +
+

Quarterly Project

+

+ Getting started on hardware development or want to make your own project? + Need something to put on your resume? IEEE's Quarterly Projects aims to + provide students with project experience in a span of 10 weeks. Check out + QP page for more detail! +

+
diff --git a/src/components/robocub/RoboTitle.astro b/src/components/robocub/RoboTitle.astro index b69e6d8..def41fa 100644 --- a/src/components/robocub/RoboTitle.astro +++ b/src/components/robocub/RoboTitle.astro @@ -5,12 +5,12 @@ import model from "../../images/model.webp"; ---
<Image src={model} alt="Robocup robot model" - class="absolute w-[50%] right-[10%] top-[5%]" + class="absolute md:w-[50%] w-[60%] md:right-[10%] right-0 md:top-[5%]" /> </div> diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index b8e56c6..b7c940b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -5,34 +5,24 @@ import InView from "../components/core/InView.astro"; --- <!doctype html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <meta name="generator" content={Astro.generator} /> - <title>Astro Basics - - - + + + + + + + IEEEUCSD + + + +
+
-
- -
-
- - - +
+
+ +
+
+
+ diff --git a/src/pages/events.astro b/src/pages/events.astro index 145da79..907c675 100644 --- a/src/pages/events.astro +++ b/src/pages/events.astro @@ -3,7 +3,6 @@ import Layout from "../layouts/Layout.astro"; import EventTitle from "../components/events/EventTitle.astro"; import { Image } from "astro:assets"; import eventborder from "../images/eventborder.webp"; -import calendar from "../images/calendar2.webp"; import UpcomingEvents from "../components/events/UpcomingEvents.astro"; import Calendar from "../components/events/Calendar.jsx"; @@ -15,12 +14,12 @@ const EVENT_CALENDAR_ID = import.meta.env.EVENT_CALENDAR_ID; JOIN US JOIN US diff --git a/src/pages/find.astro b/src/pages/find.astro index bd6f925..c1b7a5b 100644 --- a/src/pages/find.astro +++ b/src/pages/find.astro @@ -9,26 +9,25 @@ import contactbroder from "../images/contactbroder.webp"; --- + JOIN US + JOIN US + +
+
JOIN US - JOIN US - -
-
- board group photos -
-
- - +
+ + diff --git a/src/pages/robocup.astro b/src/pages/robocup.astro index 0511915..9c2694b 100644 --- a/src/pages/robocup.astro +++ b/src/pages/robocup.astro @@ -34,7 +34,7 @@ import Competition from "../components/signal/Competition.astro"; Past Team Description Paper