From ea925d91440e335fc94c225b37fe63259498f975 Mon Sep 17 00:00:00 2001 From: Korbs Date: Thu, 11 Jul 2024 18:04:53 -0400 Subject: [PATCH] Create instance list --- src/components/InstanceList.astro | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/components/InstanceList.astro diff --git a/src/components/InstanceList.astro b/src/components/InstanceList.astro new file mode 100644 index 0000000..a4c19e1 --- /dev/null +++ b/src/components/InstanceList.astro @@ -0,0 +1,50 @@ +--- +const InstanceList = await fetch('https://codeberg.org/MinPluto/MinPluto/raw/branch/master/instances.json').then((response) => response.json()); +--- + + + + + + + + + + + + {InstanceList.map((server) => + + + + + + + )} + +
URLOfficialRegionCloudflare
{server[1].uri}{server[1].official}{server[1].region}{server[1].CLOUDFLARE}
+ + \ No newline at end of file