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>