From 6ad36e72470ecbaeef72b0f6eb24ad1ee8e00c02 Mon Sep 17 00:00:00 2001 From: luaneko Date: Tue, 12 Nov 2024 19:00:41 +1100 Subject: [PATCH] Update website --- src/pages/index.astro | 15 ++++++++++----- tailwind.config.mjs | 3 ++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 39c6626..332e57c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,5 +1,10 @@ --- import Layout from "../layouts/index.astro"; + +const socials = [ + ["Bluesky", "bs/lua.re", "https://bsky.app/profile/lua.re"], + ["GitHub", "gh/luaneko", "https://github.com/luaneko"], +]; --- @@ -7,12 +12,12 @@ import Layout from "../layouts/index.astro"; class="max-w-prose mx-auto p-4 sm:p-8 leading-tight">{ ` ∧.,,∧ 𝜗𝜚 ( ̳• · • ̳) ᭢ -/ づ `}lua.re ᡣ𐭩 -luaneko <lumi@lua.re> +/ づ `}lumi@lua.re ₊˚.⋆⁺₊ -ෆᡣ𐭩 -・:。bs/lua.re -・:。gh/luaneko +{socials.map(([name, text, href]) => ( +<>・:。{text} + +))} 🍡 🌸 🎀 🌙 diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 0faa6ea..e861e93 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -9,7 +9,8 @@ export default { serif: [`"Source Serif 4"`, ...defaultTheme.fontFamily.serif], }, colors: { - bg: "#fff4ef", + bg: "#ffefef", + pink: "#f3d0d7", }, }, },