From fcb165e73eedb7335fcae6dde02aaf6c9898280d Mon Sep 17 00:00:00 2001 From: Korbs Date: Fri, 28 Jun 2024 00:17:52 -0400 Subject: [PATCH] Add stream component --- src/components/search/Stream.astro | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/components/search/Stream.astro diff --git a/src/components/search/Stream.astro b/src/components/search/Stream.astro new file mode 100644 index 0000000..ab22223 --- /dev/null +++ b/src/components/search/Stream.astro @@ -0,0 +1,68 @@ +--- +const { + Title, + Creator, + Avatar, + Link, + Thumbnail, + Views +} = Astro.props +--- + + +
+

{Views}

+ Stream Thumbnail +
+
+ {Creator +
+

{Title}

+

{Creator}

+
+
+
+ + \ No newline at end of file