Compare commits
No commits in common. "114c63d6d7b67ae39a295093e93bd842fbfac482" and "65e97a3a24e3b7b1827035871ae7f4658d70474c" have entirely different histories.
114c63d6d7
...
65e97a3a24
|
|
@ -1,8 +1,10 @@
|
|||
import { CarouselDemo } from "@/components/untils/Carousel";
|
||||
import type { Route } from "./+types/news";
|
||||
import { Header } from "@/components/header/Header";
|
||||
import { TopNav } from "@/components/header/TopNav";
|
||||
|
||||
|
||||
export function meta( ) {
|
||||
export function meta({}: Route.MetaArgs) {
|
||||
return [
|
||||
{ title: "New React Router App" },
|
||||
{ name: "description", content: "Welcome to React Router!" },
|
||||
|
|
@ -10,5 +12,11 @@ export function meta( ) {
|
|||
}
|
||||
|
||||
export default function Home() {
|
||||
return <CarouselDemo />;
|
||||
return (
|
||||
<div>
|
||||
<Header />
|
||||
<TopNav />
|
||||
<CarouselDemo />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue