From 165ecc014fabef6d75e811073875b7e433e82f34 Mon Sep 17 00:00:00 2001 From: Souma <101255979+5ouma@users.noreply.github.com> Date: Fri, 8 Nov 2024 18:15:54 +0900 Subject: [PATCH] feat(component): Add bio to show user info Show its icon, name and description. --- src/components/Bio/Bio.astro | 19 +++++++++++++++++++ src/components/Bio/style.css | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 src/components/Bio/Bio.astro create mode 100644 src/components/Bio/style.css diff --git a/src/components/Bio/Bio.astro b/src/components/Bio/Bio.astro new file mode 100644 index 0000000..519557c --- /dev/null +++ b/src/components/Bio/Bio.astro @@ -0,0 +1,19 @@ +--- +import "../../styles/global.css"; +import "./style.css"; + +export type Props = { + name: string; + description: string; + icon: string; +}; +const props = Astro.props; +--- + +