From 599437caddfa1399cf475dd70c6da4adcaadb96e Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 19 Sep 2023 17:53:21 -0700 Subject: implemented home page - CSS animation - Social media navbar --- src/components/SocialNavbar.astro | 46 +++++++ src/layouts/Layout.astro | 6 + src/pages/index.astro | 244 ++++++++++++++++++++++++++++---------- 3 files changed, 234 insertions(+), 62 deletions(-) create mode 100644 src/components/SocialNavbar.astro (limited to 'src') diff --git a/src/components/SocialNavbar.astro b/src/components/SocialNavbar.astro new file mode 100644 index 0000000..ed020e4 --- /dev/null +++ b/src/components/SocialNavbar.astro @@ -0,0 +1,46 @@ +--- +import '@fortawesome/fontawesome-free/css/all.min.css'; +--- + + +
+
+ + + + + + +
+
\ No newline at end of file diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index b800e50..69f5f8f 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -33,6 +33,12 @@ import Header from '../components/Header.astro'; rgb(var(--accent-light)) 30%, white 60% ); + --accent-gradient-purp: linear-gradient( + 45deg, + rgb(126, 85, 182), + rgb(121, 77, 209) 30%, + rgb(230, 230, 250) 60% + ); } html { font-family: system-ui, sans-serif; diff --git a/src/pages/index.astro b/src/pages/index.astro index e60ca5f..a08de2d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,64 +1,36 @@ --- import Layout from "../layouts/Layout.astro"; -import Card from "../components/Card.astro"; +import SocialNavbar from '../components/SocialNavbar.astro'; --- -
- -

- Welcome👋 -

- -
+
+
+

+ Welcome 👋 +

+

+ I'm Pinapelz a Software Engineering + student at UC Irvine +

+

+ Sometimes I make cool things. Feel free to go and check them out! +

+ +
+
+
-- cgit v1.2.3