From 582f753a9370c00f82ddd0ea0c4bf842df318a96 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Thu, 17 Oct 2024 01:16:32 -0700 Subject: initial moeification --- src/components/Footer.astro | 60 ++++++++++++++++++++++++++++++++++++++++++++ src/components/Link.astro | 33 +++++++++++++----------- src/components/Profile.astro | 27 ++++++++++---------- src/components/Shadow.astro | 45 --------------------------------- 4 files changed, 93 insertions(+), 72 deletions(-) create mode 100644 src/components/Footer.astro delete mode 100644 src/components/Shadow.astro (limited to 'src/components') diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..6670702 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,60 @@ +--- +import dataList from "../data/user.json"; +--- + + + + diff --git a/src/components/Link.astro b/src/components/Link.astro index 4ffb04b..9a6708d 100644 --- a/src/components/Link.astro +++ b/src/components/Link.astro @@ -1,9 +1,9 @@ --- -import 'remixicon/fonts/remixicon.css' +import "remixicon/fonts/remixicon.css"; interface Props { icon: string; - title: string; + title: string; description: string; url: string; } @@ -13,7 +13,7 @@ const { icon, title, description, url } = Astro.props; - +