2025-11-18 17:40:37 +08:00
|
|
|
|
2025-11-18 13:30:19 +08:00
|
|
|
import type { Route } from "./+types/news";
|
2025-11-18 17:17:06 +08:00
|
|
|
import Integrated from "@/components/news/body/Integrated";
|
|
|
|
|
import CultureBgPage from "@/components/news/body/Culturebg";
|
2025-11-18 17:44:27 +08:00
|
|
|
import {Header} from "@/components/news/header/Header";
|
|
|
|
|
import {TopNav} from "@/components/news/header/TopNav";
|
2025-11-18 16:32:21 +08:00
|
|
|
import NewsList from "@/components/list/NewsList";
|
2025-11-18 17:13:49 +08:00
|
|
|
import ImageGridSection from "@/components/body/ImageGridSection";
|
2025-11-18 17:36:30 +08:00
|
|
|
import GrassrootsDynamics from "@/components/body/GrassrootsDynamics";
|
2025-11-18 19:47:03 +08:00
|
|
|
import { FhywPage } from "@/components/FireNews/fhyw";
|
|
|
|
|
import { FhjtPage } from "@/components/FireNews/fhjt";
|
|
|
|
|
import { FhwsPage } from "@/components/FireNews/fhws";
|
|
|
|
|
import { FhrxPage } from "@/components/FireNews/fhrx";
|
2025-11-18 15:32:13 +08:00
|
|
|
export function meta( ) {
|
2025-11-18 13:05:00 +08:00
|
|
|
return [
|
|
|
|
|
{ title: "New React Router App" },
|
|
|
|
|
{ name: "description", content: "Welcome to React Router!" },
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
2025-11-18 17:21:25 +08:00
|
|
|
|
2025-11-18 15:31:37 +08:00
|
|
|
return (
|
|
|
|
|
<div>
|
2025-11-18 17:13:49 +08:00
|
|
|
<Header />
|
|
|
|
|
<TopNav />
|
2025-11-18 19:47:03 +08:00
|
|
|
<FhywPage />
|
2025-11-18 16:23:15 +08:00
|
|
|
<NewsList />
|
2025-11-18 17:13:49 +08:00
|
|
|
<ImageGridSection />
|
2025-11-19 08:13:48 +08:00
|
|
|
<GrassrootsDynamics />
|
2025-11-18 19:47:03 +08:00
|
|
|
<FhjtPage/>
|
|
|
|
|
<FhwsPage/>
|
|
|
|
|
<FhrxPage />
|
2025-11-18 17:21:25 +08:00
|
|
|
<CultureBgPage />
|
2025-11-19 08:13:48 +08:00
|
|
|
<Integrated />
|
2025-11-18 15:31:37 +08:00
|
|
|
</div>
|
|
|
|
|
);
|
2025-11-18 13:05:00 +08:00
|
|
|
}
|