From 6becb8cf09c02c93e0f5030957015ed4ea07789d Mon Sep 17 00:00:00 2001 From: Alam Guardin Date: Mon, 5 Aug 2024 22:17:34 -0500 Subject: style: basic styles and create profile component --- src/components/Card.astro | 61 -------------------------------------------- src/components/Profile.astro | 60 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 61 deletions(-) delete mode 100644 src/components/Card.astro create mode 100644 src/components/Profile.astro (limited to 'src/components') diff --git a/src/components/Card.astro b/src/components/Card.astro deleted file mode 100644 index bd6d597..0000000 --- a/src/components/Card.astro +++ /dev/null @@ -1,61 +0,0 @@ ---- -interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - - - diff --git a/src/components/Profile.astro b/src/components/Profile.astro new file mode 100644 index 0000000..d174a9c --- /dev/null +++ b/src/components/Profile.astro @@ -0,0 +1,60 @@ +--- +import UserProfileImage from '../assets/user-profile-image.png' +--- + +
+
+
+ This is me! +
+
+
+

Kelly Bowlin

+

Web Designer

+
+
+ + \ No newline at end of file -- cgit v1.2.3