2025-11-18 13:30:19 +08:00
|
|
|
import { Carousel } from "@/components/ui/carousel";
|
|
|
|
|
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 13:05:00 +08:00
|
|
|
export function meta({}: Route.MetaArgs) {
|
|
|
|
|
return [
|
|
|
|
|
{ title: "New React Router App" },
|
|
|
|
|
{ name: "description", content: "Welcome to React Router!" },
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
2025-11-18 17:17:06 +08:00
|
|
|
return (
|
|
|
|
|
<div >
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-11-18 13:05:00 +08:00
|
|
|
}
|