From ebaa56401efd9b14ecef922db8c2f6eac732a4d6 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 21 Feb 2025 17:38:43 -0500 Subject: Initial commit --- src/assets/astro.svg | 1 + src/assets/background.svg | 1 + src/components/sites.json | 77 +++++++++++++++++++++++++++++++++++++++++++++++ src/layouts/Layout.astro | 26 ++++++++++++++++ src/pages/index.astro | 56 ++++++++++++++++++++++++++++++++++ 5 files changed, 161 insertions(+) create mode 100644 src/assets/astro.svg create mode 100644 src/assets/background.svg create mode 100644 src/components/sites.json create mode 100644 src/layouts/Layout.astro create mode 100644 src/pages/index.astro (limited to 'src') diff --git a/src/assets/astro.svg b/src/assets/astro.svg new file mode 100644 index 0000000..8cf8fb0 --- /dev/null +++ b/src/assets/astro.svg @@ -0,0 +1 @@ + diff --git a/src/assets/background.svg b/src/assets/background.svg new file mode 100644 index 0000000..4b2be0a --- /dev/null +++ b/src/assets/background.svg @@ -0,0 +1 @@ + diff --git a/src/components/sites.json b/src/components/sites.json new file mode 100644 index 0000000..fa72f5e --- /dev/null +++ b/src/components/sites.json @@ -0,0 +1,77 @@ +[ + { + "name": "bnbmc Wiki", + "website": "https://wiki.bnbmc.net", + "type": "wiki" + }, + { + "name": "AirCS Race", + "website": "https://aircs.racing", + "type": "transportation" + }, + { + "name": "SQTR", + "website": "https://sqtr.aircs.racing", + "type": "transportation" + }, + { + "name": "FrivoloCo", + "website": "https://frivoloco.aircs.racing", + "type": "business" + }, + { + "name": "MinePot", + "website": "https://minepot.aircs.racing", + "type": "business" + }, + { + "name": "Waveform Music Solutions", + "website": "https://waveformmusic.aircs.racing", + "type": "business" + }, + { + "name": "TAY", + "website": "https://tay.aircs.racing", + "type": "country" + }, + { + "name": "KR", + "website": "https://kr.aircs.racing", + "type": "country" + }, + { + "name": "Anatoli", + "website": "https://anatoli.aircs.racing", + "type": "country" + }, + { + "name": "Open Republic", + "website": "https://openrepublic.aircs.racing", + "type": "country" + }, + { + "name": "Alure Regions", + "website": "https://alure.bnbmc.net", + "type": "country" + }, + { + "name": "Aura Regions", + "website": "https://auraregions.aircs.racing", + "type": "country" + }, + { + "name": "Mojave", + "website": "https://mojave.aircs.racing", + "type": "country" + }, + { + "name": "Yavno Republic", + "website": "https://yavno.aircs.racing", + "type": "country" + }, + { + "name": "Solstan Federation", + "website": "https://solstice.bnbmc.net", + "type": "country" + } +] diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..e51b083 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,26 @@ + + + + + + + + bits & Bytes Minecraft + + + + + + + diff --git a/src/pages/index.astro b/src/pages/index.astro new file mode 100644 index 0000000..e47d9a1 --- /dev/null +++ b/src/pages/index.astro @@ -0,0 +1,56 @@ +--- +import Layout from '../layouts/Layout.astro'; +import sites from '../components/sites.json'; + +// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build +// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh. +--- + + +
+

bits & Bytes Minecraft

+

IP: mc.bnbmc.net

+ Must be an active member of the bits & Bytes Discord to join. +
+ {sites.map((site) => ( + + ))} +
+
+
+ + -- cgit v1.2.3