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
23
README.md
23
README.md
|
@ -3,12 +3,14 @@
|
||||||
Development version of the IEEE UC San Diego student branch website.
|
Development version of the IEEE UC San Diego student branch website.
|
||||||
|
|
||||||
## Figma Design
|
## Figma Design
|
||||||
- [IEEE UCSD Website Design](https://www.figma.com/design/AihoR936yUmYrMoCZJ0LF7/UCSD-IEEE?node-id=0-1&t=ajK9lKroQFJbokFS-1)
|
|
||||||
|
- [IEEE UCSD Website Design](https://www.figma.com/design/AihoR936yUmYrMoCZJ0LF7/UCSD-IEEE?node-id=0-1&t=ajK9lKroQFJbokFS-1)
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
|
|
||||||
- [Bun](https://bun.sh) - Fast all-in-one JavaScript runtime & toolkit
|
- [Bun](https://bun.sh) - Fast all-in-one JavaScript runtime & toolkit
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
|
@ -46,9 +48,14 @@ bun run start
|
||||||
|
|
||||||
## Built with:
|
## Built with:
|
||||||
|
|
||||||
- [Astro](https://astro.build) - Web framework for content-driven websites
|
- [Astro](https://astro.build) - Web framework for content-driven websites
|
||||||
- [React](https://react.dev) - UI components
|
- [React](https://react.dev) - UI components
|
||||||
- [TailwindCSS](https://tailwindcss.com) - Styling
|
- [TailwindCSS](https://tailwindcss.com) - Styling
|
||||||
- [MDX](https://mdxjs.com) - Enhanced Markdown
|
- [MDX](https://mdxjs.com) - Enhanced Markdown
|
||||||
- [Expressive Code](https://expressive-code.com) - Beautiful code blocks
|
- [Expressive Code](https://expressive-code.com) - Beautiful code blocks
|
||||||
- [Node.js Adapter](https://docs.astro.build/en/guides/integrations-guide/node/) - Server-side rendering
|
- [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 Layout from "../layouts/Layout.astro";
|
||||||
import EventTitle from "../components/events/EventTitle.astro";
|
import EventTitle from "../components/events/EventTitle.astro";
|
||||||
import { Image } from "astro:assets";
|
import { Image } from "astro:assets";
|
||||||
import join from "../../public/join.png";
|
import eventborder from "../../public/eventborder.png";
|
||||||
import calendar from "../../public/calendar2.png";
|
import calendar from "../../public/calendar2.png";
|
||||||
import UpcomingEvents from "../components/events/UpcomingEvents.astro";
|
import UpcomingEvents from "../components/events/UpcomingEvents.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout>
|
<Layout>
|
||||||
<Image src={join} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
<Image src={eventborder} 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 right-[1vw] w-[4vw] top-[60vh]" />
|
||||||
<EventTitle />
|
<EventTitle />
|
||||||
<UpcomingEvents />
|
<UpcomingEvents />
|
||||||
<div class="flex justify-center pb-[10%]">
|
<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 FindTitle from "../components/find/FindTitle.astro";
|
||||||
import { Image } from "astro:assets";
|
import { Image } from "astro:assets";
|
||||||
import event from "../../public/event.jpg";
|
import event from "../../public/event.jpg";
|
||||||
|
import contactbroder from "../../public/contactbroder.png"
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout>
|
<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 />
|
<FindTitle />
|
||||||
<div class="w-full flex justify-center">
|
<div class="w-full flex justify-center">
|
||||||
<Image
|
<Image
|
||||||
|
|
|
@ -4,12 +4,12 @@ import Title from "../components/core/Title.astro";
|
||||||
import QP from "../components/projects/QP.astro";
|
import QP from "../components/projects/QP.astro";
|
||||||
import AP from "../components/projects/AP.astro";
|
import AP from "../components/projects/AP.astro";
|
||||||
import { Image } from "astro:assets";
|
import { Image } from "astro:assets";
|
||||||
import join from "../../public/join.png";
|
import projectsborder from "../../public/projectsborder.png";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout>
|
<Layout>
|
||||||
<Image src={join} alt="JOIN US" class="absolute left-[1vw] w-[4vw] top-[60vh]" />
|
<Image src={projectsborder} 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 right-[1vw] w-[4vw] top-[60vh]" />
|
||||||
<Title title="PROJECTS" />
|
<Title title="PROJECTS" />
|
||||||
<QP />
|
<QP />
|
||||||
<AP />
|
<AP />
|
||||||
|
|
Loading…
Reference in a new issue