2025-11-18 15:11:13 +08:00
|
|
|
import { CarouselDemo } from "@/components/untils/Carousel";
|
2025-11-18 15:32:13 +08:00
|
|
|
import NewsList from "@/components/list/NewsList";
|
2025-11-18 13:05:00 +08:00
|
|
|
|
|
|
|
|
|
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 15:32:13 +08:00
|
|
|
return <NewsList />;
|
2025-11-18 13:05:00 +08:00
|
|
|
}
|