From 8bba792637dddaf2f3168bb3ff834acf0ce84d11 Mon Sep 17 00:00:00 2001
From: SanjayramVempati <101228879+SanjayramVempati@users.noreply.github.com>
Date: Wed, 5 Apr 2023 20:17:32 -0400
Subject: [PATCH] timeline
---
src/components/Nav.astro | 37 +++---
src/components/Timeline.astro | 35 ++++++
src/components/buttons/AlertButton.astro | 7 ++
src/components/buttons/OutlineButton.astro | 17 +++
src/components/cards/Card.astro | 19 +++
src/components/cards/TimelineCard.astro | 19 +++
src/pages/index.astro | 135 +++++----------------
7 files changed, 146 insertions(+), 123 deletions(-)
create mode 100644 src/components/Timeline.astro
create mode 100644 src/components/buttons/AlertButton.astro
create mode 100644 src/components/buttons/OutlineButton.astro
create mode 100644 src/components/cards/Card.astro
create mode 100644 src/components/cards/TimelineCard.astro
diff --git a/src/components/Nav.astro b/src/components/Nav.astro
index 7b01da0..2694549 100644
--- a/src/components/Nav.astro
+++ b/src/components/Nav.astro
@@ -2,6 +2,7 @@
// Image imports
import logo from "../images/logo.png";
// Components---
+import OutlineButton from "../components/buttons/OutlineButton.astro";
---
+
+
+