-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate home realm list to use content collections * Update hyperpink to use content collections * Migrate realm pages and polish
- Loading branch information
Showing
14 changed files
with
129 additions
and
121 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "ryuuart", | ||
"link": "https://www.long-nguyen.dev/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,29 @@ | ||
// src/content/config.ts | ||
import { defineCollection } from "astro:content"; | ||
import { defineCollection, reference, z } from "astro:content"; | ||
import { docsSchema } from "@astrojs/starlight/schema"; | ||
|
||
export const collections = { | ||
docs: defineCollection({ schema: docsSchema() }), | ||
realms: defineCollection({ | ||
type: "content", | ||
schema: z.object({ | ||
title: z.string(), | ||
tagline: z.string(), | ||
author: reference("authors"), | ||
song: z.object({ | ||
name: z.string(), | ||
link: z.string().url(), | ||
}), | ||
color: z.object({ | ||
portal: z.string(), | ||
}), | ||
}), | ||
}), | ||
authors: defineCollection({ | ||
type: "data", | ||
schema: z.object({ | ||
name: z.string(), | ||
link: z.string().url(), | ||
}), | ||
}), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: flarewater | ||
tagline: elemental flavor | ||
author: ryuuart | ||
color: | ||
portal: firebrick | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Hero | ||
tagline: another self | ||
author: ryuuart | ||
color: | ||
portal: gold | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: hyperpink | ||
tagline: prima donna | ||
author: ryuuart | ||
song: | ||
name: Dialtone | ||
link: https://www.youtube.com/watch?v=Z-IarCz4GKw | ||
color: | ||
portal: hotpink | ||
--- | ||
|
||
**HYPERPINK** is inspired by my queer friends and myself. They thought it would be so cool if the marquee was interactive so here it is. We are queening here rn!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "#HYPERTRANCE" | ||
tagline: infinite evolution — | ||
author: ryuuart | ||
song: | ||
name: Infinite Evolution | ||
link: https://open.spotify.com/track/39VB77jY5WTMFEH6TwUb6s?si=a6bff74890284ed2 | ||
color: | ||
portal: royalblue | ||
--- | ||
|
||
**#HYPERTRANCE** is the sound and aesthetic of **MANAWAVE**. It’s directly inspired from the y2k cyber era of look and sound. I feel spiritually aligned to its feeling as someone nostalgic for more imaginative times. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Senbonzakura | ||
tagline: dreaming 1000 cherry blossoms | ||
author: ryuuart | ||
song: | ||
name: 感情の魔天楼 ~ World's End | ||
link: https://www.youtube.com/watch?v=N1w4T9G9g7M | ||
color: | ||
portal: deeppink | ||
--- | ||
|
||
**SENBONZAKURA** <span class="japanese">(千本桜)</span> came to me while listening to TOUHOU music at the gym. Feeling the passion, I suddenly saw a field of moonlit typographic cherry petals. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters