diff --git a/README.md b/README.md index c5a09e4..e2c4c8f 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,14 @@ 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) + +- [IEEE UCSD Website Design](https://www.figma.com/design/AihoR936yUmYrMoCZJ0LF7/UCSD-IEEE?node-id=0-1&t=ajK9lKroQFJbokFS-1) + ## Getting Started Prerequisites: -- [Bun](https://bun.sh) - Fast all-in-one JavaScript runtime & toolkit +- [Bun](https://bun.sh) - Fast all-in-one JavaScript runtime & toolkit ### Installation @@ -46,9 +48,14 @@ bun run start ## Built with: -- [Astro](https://astro.build) - Web framework for content-driven websites -- [React](https://react.dev) - UI components -- [TailwindCSS](https://tailwindcss.com) - Styling -- [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 +- [Astro](https://astro.build) - Web framework for content-driven websites +- [React](https://react.dev) - UI components +- [TailwindCSS](https://tailwindcss.com) - Styling +- [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 diff --git a/src/components/signal/Competition.astro b/src/components/signal/Competition.astro new file mode 100644 index 0000000..b3fb76b --- /dev/null +++ b/src/components/signal/Competition.astro @@ -0,0 +1,33 @@ +--- +import { LiaDotCircle } from "react-icons/lia"; +import Link from "next/link"; +const {picture, name, description, link} = Astro.props; +--- +
+ + signal + +
+ +
+ +

+ Competition +

+
+ +
+

+ {name} +

+

+ {description} +

+ + Link + +
+ +
+ +
\ No newline at end of file diff --git a/src/pages/404.astro b/src/pages/404.astro index 7145242..958a024 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -5,10 +5,10 @@ import Link from "next/link"; -
+
404 shing -
+

Oops! You're Lost in the Circuit! 🔌⚡

diff --git a/src/pages/robocup.astro b/src/pages/robocup.astro index 0743bb5..728a4ef 100644 --- a/src/pages/robocup.astro +++ b/src/pages/robocup.astro @@ -11,6 +11,7 @@ import Join from "../components/robocub/Join.astro"; import Contacts from "../components/robocub/Contacts.astro"; import Subteams from "../components/robocub/Subteams.astro"; import Timeline from "../components/qp/Timeline.astro"; +import Competition from "../components/signal/Competition.astro"; --- @@ -23,6 +24,7 @@ import Timeline from "../components/qp/Timeline.astro"; Past Team Description Paper
+ diff --git a/src/pages/signal.astro b/src/pages/signal.astro index 9fa40e9..f2c32be 100644 --- a/src/pages/signal.astro +++ b/src/pages/signal.astro @@ -3,12 +3,13 @@ import Layout from "../layouts/Layout.astro"; import Contacts from "../components/signal/Contacts.astro"; import About from "../components/core/About.astro"; import Title from "../components/core/Title.astro"; +import Competition from "../components/signal/Competition.astro" ---

COMING SOON (New UCSD IEEE branch)

<About title="What is Signal Processing" text="Currently, we are focusing on the IEEE Signal Processing Cup (an annual signal processing competition). However, we might do projects in the future."/> + <Competition picture = "../public/signal.png" name = "IEEE Signal Processing Cup" link = "https://www.google.com/"/> <Contacts /> - </Layout>