From 83d634817a5c061883ecff2a4488ed6a1d5878d2 Mon Sep 17 00:00:00 2001 From: aria Date: Tue, 27 May 2025 19:53:55 +1000 Subject: [PATCH 1/3] perf(index): try 0x5066's button with FriendLinkLow --- src/pages/index.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 32e9f09..97e12d0 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -6,6 +6,7 @@ import Social from "../components/Social.astro"; import BaseLayout from "../layouts/BaseLayout.astro"; import FriendLink from "../components/FriendLink.astro"; import FriendLinkMid from "../components/FriendLinkMid.astro"; +import FriendLinkLow from "../components/FriendLinkLow.astro"; const pageTitle = "Aria"; const currentDate = new Date(); @@ -92,7 +93,7 @@ const age = seconds / 31556952; image="https://notnite.com/buttons/notnite.png" target="https://notnite.com/" /> - Date: Tue, 27 May 2025 19:59:47 +1000 Subject: [PATCH 2/3] feat(FriendLink): add high variant --- src/components/FriendLinkHigh.astro | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/components/FriendLinkHigh.astro diff --git a/src/components/FriendLinkHigh.astro b/src/components/FriendLinkHigh.astro new file mode 100644 index 0000000..eaced05 --- /dev/null +++ b/src/components/FriendLinkHigh.astro @@ -0,0 +1,16 @@ +--- +import { Image, Picture } from "astro:assets"; + +const { name, image, target } = Astro.props; +--- + + \ No newline at end of file From 203414e26e74c50efec325bb0b1d9baafecf4a94 Mon Sep 17 00:00:00 2001 From: aria Date: Tue, 27 May 2025 20:00:21 +1000 Subject: [PATCH 3/3] perf(index): move all FriendLinks over to high variant --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 97e12d0..cc8c776 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -4,7 +4,7 @@ import Partition from "../components/Partition.astro"; import Greeting from "../components/Greeting"; import Social from "../components/Social.astro"; import BaseLayout from "../layouts/BaseLayout.astro"; -import FriendLink from "../components/FriendLink.astro"; +import FriendLink from "../components/FriendLinkHigh.astro"; import FriendLinkMid from "../components/FriendLinkMid.astro"; import FriendLinkLow from "../components/FriendLinkLow.astro"; const pageTitle = "Aria";