news-analyze/server/api/getData/fetchNewsOrgInfo.ts
吳元皓 dce96b3a35 Refactor navigation bar styling, update localization files, and enhance news organization page
- Updated navigation bar styles for improved aesthetics and functionality.
- Added loading text to English and Traditional Chinese localization files.
- Enhanced the news organization about page with better layout and SEO metadata.
- Updated API response to include Facebook link for news organizations.
- Removed old Tailwind CSS configuration and styles, replacing them with a new main CSS file.
- Updated package.json to include new dependencies and scripts for better development experience.
2025-05-06 16:16:43 +08:00

13 lines
358 B
TypeScript

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: "",
facebook: "https://www.facebook.com/taisounds",
}
})