2025-11-18 15:11:13 +08:00
|
|
|
import { CarouselDemo } from "@/components/untils/Carousel";
|
2025-11-18 13:30:19 +08:00
|
|
|
import type { Route } from "./+types/news";
|
2025-11-18 15:31:37 +08:00
|
|
|
import { Header } from "@/components/header/Header";
|
|
|
|
|
import { TopNav } from "@/components/header/TopNav";
|
2025-11-18 16:32:21 +08:00
|
|
|
import NewsList from "@/components/list/NewsList";
|
|
|
|
|
|
|
|
|
|
import { C } from "node_modules/react-router/dist/development/index-react-server-client-rcoGPJhU.mjs";
|
|
|
|
|
import { Carousel } from "@/ui/carousel";
|
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 15:31:37 +08:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<CarouselDemo />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-11-18 13:05:00 +08:00
|
|
|
}
|