From 290f969ec0048939ed4d4ac9dfc33942cd2d9243 Mon Sep 17 00:00:00 2001 From: John Lu <87673068+JohnLu2004@users.noreply.github.com> Date: Tue, 30 Jul 2024 02:07:02 -0400 Subject: [PATCH] Updated Home Page to be somewhat presentable (#22) --- src/pages/index.astro | 40 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index a7e5ea49..2f17c459 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,13 +1,45 @@ --- import { getCollection } from "astro:content"; import { default as Layout } from "src/layouts/Content/Content.astro"; +import RowCard from "@components/RowCard/RowCard.astro"; +const rowCardInfo = [ + { + title: "Go through past midterms and finals here!", + icon: "mdi mdi-book-open-variant", + link: "/evaluations/", + }, + { + title: "Check out all the courses we currently have here!", + icon: "mdi mdi-school", + link: "/courses", + }, + { + title: "Farm through questions based on topic!", + icon: "mdi mdi-tag", + link: "/evaluations", + }, +]; --- - -

Carleton Computer Science Question Repository

-
(coming soon)
+ +

Carleton Computer Science Practice Questions Repository

+
+ Dedicated to my Discrete Math II classmates who couldn't make it to the end + with me +

- Evaluations + { + rowCardInfo.map((card) => ( + <> +
+ + + +
+
+ + )) + }