news/app/routes/news.tsx

23 lines
492 B
TypeScript
Raw Normal View History

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:52:22 +08:00
import { Header } from "@/components/header/Header";
import { TopNav } from "@/components/header/TopNav";
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:52:22 +08:00
return (
<div>
<Header />
<TopNav />
<CarouselDemo />
</div>
);
2025-11-18 13:05:00 +08:00
}