From 351384132ad4c3c47855b97c2eee251ad97b753a Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sun, 8 Jun 2025 05:50:48 -0700 Subject: [PATCH] include rice source code --- src/components/marquee/Marquee.astro | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/marquee/Marquee.astro b/src/components/marquee/Marquee.astro index 08fde73..67dc8c6 100644 --- a/src/components/marquee/Marquee.astro +++ b/src/components/marquee/Marquee.astro @@ -4,10 +4,12 @@ import { Icon } from "astro-icon/components"; const videos = [ { author: 'soramane', + source: "https://github.com/caelestia-dots/shell", path: "/assets/showcase/soramane.mp4", }, { author: 'outfoxxed', + source: "https://git.outfoxxed.me/outfoxxed/nixnew/src/branch/master/modules/user/modules/quickshell", path: "/assets/showcase/outfoxxed.mp4", }, { @@ -20,6 +22,7 @@ const videos = [ }, { author: 'flicko', + source: "https://github.com/flickowoa/zephyr", path: "/assets/showcase/flicko.mp4", }, ]; @@ -34,7 +37,7 @@ const videos = [
- {videos.map(({ author, path }, index) =>
+ {videos.map(({ author, source, path }, index) =>
-

Configuration by

+

+ Configuration by + {source ? (source code) : null} +

)}