feat: integrate animate.css for animations, enhance layout, and improve localization files

This commit is contained in:
yuanhau 2025-05-06 19:31:53 +08:00
parent 95661e908a
commit 2f20d49091
21 changed files with 252 additions and 172 deletions

View file

@ -1,14 +1,13 @@
export default defineEventHandler(async(event) => {
const body = await readBody(event);
return {
body: body,
title: "News Org 1",
slug: "taisounds",
website: "https://www.taisounds.com.tw",
description: "wah wah wah wah wah wah I dont fucking care",
facebook: "https://www.facebook.com/taisounds",
logoUrl: "https://cdn.discordapp.com/avatars/918723093646684180/4eecc27ac05ee8a701fa167808610c7a.jpg",
}
})
export default defineEventHandler(async (event) => {
const body = await readBody(event);
return {
body: body,
title: "News Org 1",
slug: "taisounds",
website: "https://www.taisounds.com.tw",
description: "wah wah wah wah wah wah I dont fucking care",
facebook: "https://www.facebook.com/taisounds",
logoUrl:
"https://cdn.discordapp.com/avatars/918723093646684180/4eecc27ac05ee8a701fa167808610c7a.jpg",
};
});