From 1c1c5db4caf55e3204b82bfa4b39a50ff1283b06 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 20 Sep 2023 00:24:08 -0700 Subject: implemented project page with cards --- src/components/Card.astro | 73 +++++++++++++++--- src/components/Header.astro | 126 +++++++++++++++---------------- src/components/ShapesBackground.astro | 135 ++++++++++++++++++++++++++++++++++ src/components/SocialNavbar.astro | 113 ++++++++++++++++++---------- 4 files changed, 333 insertions(+), 114 deletions(-) create mode 100644 src/components/ShapesBackground.astro (limited to 'src/components') diff --git a/src/components/Card.astro b/src/components/Card.astro index bd6d597..bf0ecf5 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -1,24 +1,30 @@ +User --- interface Props { title: string; body: string; href: string; + language: string; + languageColor: string; } -const { href, title, body } = Astro.props; +const { href, title, body, language, languageColor } = Astro.props; --- + + \ No newline at end of file diff --git a/src/components/Header.astro b/src/components/Header.astro index 3e3f97e..171e8e1 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,72 +1,62 @@ ---- - ----
- + + Profile Picture
- diff --git a/src/components/ShapesBackground.astro b/src/components/ShapesBackground.astro new file mode 100644 index 0000000..fd56d72 --- /dev/null +++ b/src/components/ShapesBackground.astro @@ -0,0 +1,135 @@ + + \ No newline at end of file diff --git a/src/components/SocialNavbar.astro b/src/components/SocialNavbar.astro index ed020e4..95aa1a2 100644 --- a/src/components/SocialNavbar.astro +++ b/src/components/SocialNavbar.astro @@ -1,46 +1,85 @@ --- -import '@fortawesome/fontawesome-free/css/all.min.css'; +import "@fortawesome/fontawesome-free/css/all.min.css"; --- +
-
- - - - - - -
-
\ No newline at end of file +
+ + + + + + +
+ -- cgit v1.2.3