From 741eb3688c369407d5ac084d76a0eec378631d71 Mon Sep 17 00:00:00 2001 From: Dallin Urness Date: Sun, 1 Dec 2024 05:33:58 -0700 Subject: [PATCH] add live chat --- src/layouts/Layout.astro | 9 +++++++ src/pages/day/[day]/index.astro | 45 ++++++++++++++++++++------------- 2 files changed, 37 insertions(+), 17 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index d4a6376..6b58b63 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -29,6 +29,15 @@ const { title } = Astro.props; href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet" /> + + -

Solutions

- +
+
+
    + { + solutionList.map(({ username, descriptions }) => ( +
  • + + {username} -{" "} + {descriptions.map((description) => ( + + {description} + + ))} + +
  • + )) + } +
+
+
+
+
+
+