From 348dfcca7e69922369322336d6934f652da2d448 Mon Sep 17 00:00:00 2001 From: Korbs Date: Fri, 6 Sep 2024 23:46:03 -0400 Subject: [PATCH] Add category --- src/Category.astro | 56 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/Category.astro diff --git a/src/Category.astro b/src/Category.astro new file mode 100644 index 0000000..73c279a --- /dev/null +++ b/src/Category.astro @@ -0,0 +1,56 @@ +--- +// Properties +const { + Name, + Link, + Thumbnail, + Platform +} = Astro.props +--- + + + {Platform ? + + : + + } + +

{Name}

+
+ + \ No newline at end of file