Merge branch 'main' of https://git.ieeeucsd.org/Webmaster/dev-ieeeucsd-org into cwu423
This commit is contained in:
commit
543eb644bb
9 changed files with 27 additions and 14 deletions
|
@ -3,7 +3,9 @@
|
|||
Development version of the IEEE UC San Diego student branch website.
|
||||
|
||||
## Figma Design
|
||||
|
||||
- [IEEE UCSD Website Design](https://www.figma.com/design/AihoR936yUmYrMoCZJ0LF7/UCSD-IEEE?node-id=0-1&t=ajK9lKroQFJbokFS-1)
|
||||
|
||||
## Getting Started
|
||||
|
||||
Prerequisites:
|
||||
|
@ -52,3 +54,8 @@ bun run start
|
|||
- [MDX](https://mdxjs.com) - Enhanced Markdown
|
||||
- [Expressive Code](https://expressive-code.com) - Beautiful code blocks
|
||||
- [Node.js Adapter](https://docs.astro.build/en/guides/integrations-guide/node/) - Server-side rendering
|
||||
|
||||
## Contributors:
|
||||
|
||||
- Charles Nguyen
|
||||
- Shing Hung
|
||||
|
|
BIN
public/contactbroder.png
Normal file
BIN
public/contactbroder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
public/eventborder.png
Normal file
BIN
public/eventborder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
public/projectsborder.png
Normal file
BIN
public/projectsborder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
public/signalborder.png
Normal file
BIN
public/signalborder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.9 KiB |
3
src/components/board/Filter.astro
Normal file
3
src/components/board/Filter.astro
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
|
||||
---
|
|
@ -2,14 +2,14 @@
|
|||
import Layout from "../layouts/Layout.astro";
|
||||
import EventTitle from "../components/events/EventTitle.astro";
|
||||
import { Image } from "astro:assets";
|
||||
import join from "../../public/join.png";
|
||||
import eventborder from "../../public/eventborder.png";
|
||||
import calendar from "../../public/calendar2.png";
|
||||
import UpcomingEvents from "../components/events/UpcomingEvents.astro";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Image src={join} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={join} alt="JOIN US" class="absolute right-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={eventborder} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={eventborder} alt="JOIN US" class="absolute right-[1vw] w-[4vw] top-[60vh]" />
|
||||
<EventTitle />
|
||||
<UpcomingEvents />
|
||||
<div class="flex justify-center pb-[10%]">
|
||||
|
|
|
@ -5,9 +5,12 @@ import Findus from "../components/join/Findus.astro";
|
|||
import FindTitle from "../components/find/FindTitle.astro";
|
||||
import { Image } from "astro:assets";
|
||||
import event from "../../public/event.jpg";
|
||||
import contactbroder from "../../public/contactbroder.png"
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Image src={contactbroder} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={contactbroder} alt="JOIN US" class="absolute right-[1vw] w-[4vw] top-[60vh]" />
|
||||
<FindTitle />
|
||||
<div class="w-full flex justify-center">
|
||||
<Image
|
||||
|
|
|
@ -4,12 +4,12 @@ import Title from "../components/core/Title.astro";
|
|||
import QP from "../components/projects/QP.astro";
|
||||
import AP from "../components/projects/AP.astro";
|
||||
import { Image } from "astro:assets";
|
||||
import join from "../../public/join.png";
|
||||
import projectsborder from "../../public/projectsborder.png";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Image src={join} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={join} alt="JOIN US" class="absolute right-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={projectsborder} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Image src={projectsborder} alt="JOIN US" class="absolute right-[1vw] w-[4vw] top-[60vh]" />
|
||||
<Title title="PROJECTS" />
|
||||
<QP />
|
||||
<AP />
|
||||
|
|
Loading…
Reference in a new issue