diff --git a/docs/src/content/docs/blog/DevLog-2025.03.05.md b/docs/src/content/docs/blog/DevLog-2025.03.05.md
index ec3e45eb6..e70bd4444 100644
--- a/docs/src/content/docs/blog/DevLog-2025.03.05.md
+++ b/docs/src/content/docs/blog/DevLog-2025.03.05.md
@@ -25,7 +25,7 @@ onMounted(async () => {
```
Last week, our corporate designer/artist has submitted our commission for the
-basic/first version of Project Airi logo. The feeling of the logo looks like
+basic/first version of Project AIRI logo. The feeling of the logo looks like
this:

@@ -66,7 +66,7 @@ So this is what we get finally:

Later on today, I was working on publishing the
-[documentation site](https://airi.build) of Project Airi online, for me,
+[documentation site](https://airi.build) of Project AIRI online, for me,
and other developers, artists to use it as a reference and guidelines.
I did it! And the newly designed logo has been put into the
diff --git a/docs/src/content/docs/blog/DevLog-2025.03.10.md b/docs/src/content/docs/blog/DevLog-2025.03.10.md
index c50e55228..bc2965c33 100644
--- a/docs/src/content/docs/blog/DevLog-2025.03.10.md
+++ b/docs/src/content/docs/blog/DevLog-2025.03.10.md
@@ -35,7 +35,7 @@ implementing this dotted effect for the buttons:
During the development, we found that some of the packages that currently living
under the `packages/` directory are actually independent packages that were not
-even in the workflow of Project Airi.
+even in the workflow of Project AIRI.
This means we can now move them out to another place to simplify the installation
sizes and building process for the primary repository
diff --git a/docs/src/content/docs/blog/DevLog-2025.03.20.mdx b/docs/src/content/docs/blog/DevLog-2025.03.20.mdx
index b2ff427ba..2fdb330cf 100644
--- a/docs/src/content/docs/blog/DevLog-2025.03.20.mdx
+++ b/docs/src/content/docs/blog/DevLog-2025.03.20.mdx
@@ -75,7 +75,7 @@ recorded once done:
The entire OKLCH color palette can spread on to the canvas all at once
for us to take as reference. But it wasn't perfect to tryout the colors
-and have the same scheme of feelings of Project Airi's theme, was it?
+and have the same scheme of feelings of Project AIRI's theme, was it?
So I first re-implemented the color slider, which feels much more suitable:
diff --git a/docs/src/content/docs/guides/index.md b/docs/src/content/docs/guides/index.md
index f240672e3..44507acdf 100644
--- a/docs/src/content/docs/guides/index.md
+++ b/docs/src/content/docs/guides/index.md
@@ -1,8 +1,8 @@
---
title: Getting Started
-description: Get to know the UI of Project Airi
+description: Get to know the UI of Project AIRI
---
For guides that help you understand how to contribute to this project, please refer to [Contributing](../references/contributing/guide/) page.
-For references Contributing help you design and improve the UI of Project Airi, please refer to [Design Guidelines](../references/design-guidelines/) page.
+For references Contributing help you design and improve the UI of Project AIRI, please refer to [Design Guidelines](../references/design-guidelines/) page.
diff --git a/docs/src/content/docs/references/Contributing/guide.md b/docs/src/content/docs/references/Contributing/guide.md
index 20d72566f..9b99369ad 100644
--- a/docs/src/content/docs/references/Contributing/guide.md
+++ b/docs/src/content/docs/references/Contributing/guide.md
@@ -1,6 +1,6 @@
---
title: Contributing
-description: Contributing to Project Airi
+description: Contributing to Project AIRI
---
Hello! Thank you for your interest in contributing to this project. This guide will help you get started.
diff --git a/docs/src/content/docs/references/Design Guidelines/tools.md b/docs/src/content/docs/references/Design Guidelines/tools.md
index 0e78e0ad1..ca4d45a70 100644
--- a/docs/src/content/docs/references/Design Guidelines/tools.md
+++ b/docs/src/content/docs/references/Design Guidelines/tools.md
@@ -1,6 +1,6 @@
---
title: Tools
-description: Tools for designing the UI, UX for Project Airi
+description: Tools for designing the UI, UX for Project AIRI
---
## Colors
diff --git a/packages/font-cjkfonts-allseto/package.json b/packages/font-cjkfonts-allseto/package.json
index 2bee616a7..15cdd48f0 100644
--- a/packages/font-cjkfonts-allseto/package.json
+++ b/packages/font-cjkfonts-allseto/package.json
@@ -2,7 +2,7 @@
"name": "@proj-airi/font-cjkfonts-allseto",
"type": "module",
"private": true,
- "description": "A collection of transition animations that used by Project Airi",
+ "description": "A collection of transition animations that used by Project AIRI",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
diff --git a/packages/font-xiaolai/package.json b/packages/font-xiaolai/package.json
index 35c907c77..8d26b69c2 100644
--- a/packages/font-xiaolai/package.json
+++ b/packages/font-xiaolai/package.json
@@ -2,7 +2,7 @@
"name": "@proj-airi/font-xiaolai",
"type": "module",
"private": true,
- "description": "A collection of transition animations that used by Project Airi",
+ "description": "A collection of transition animations that used by Project AIRI",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
diff --git a/packages/ui-loading-screens/build.config.ts b/packages/ui-loading-screens/build.config.ts
new file mode 100644
index 000000000..1b75cc91b
--- /dev/null
+++ b/packages/ui-loading-screens/build.config.ts
@@ -0,0 +1,12 @@
+import { defineBuildConfig } from 'unbuild'
+
+export default defineBuildConfig({
+ entries: [
+ { builder: 'mkdist', input: './src/components/', outDir: './dist/components', pattern: '**/*.vue', loaders: ['vue'] },
+ { builder: 'mkdist', input: './src/components/', outDir: './dist/components', pattern: '**/*.ts', format: 'esm', loaders: ['js'] },
+ { builder: 'mkdist', input: './src/', outDir: './dist/', pattern: '**/*.ts', format: 'esm', loaders: ['js'] },
+ ],
+ declaration: true,
+ sourcemap: true,
+ clean: true,
+})
diff --git a/packages/ui-loading-screens/index.html b/packages/ui-loading-screens/index.html
new file mode 100644
index 000000000..c786fd008
--- /dev/null
+++ b/packages/ui-loading-screens/index.html
@@ -0,0 +1,25 @@
+
+
+