Compare commits
2 Commits
65e97a3a24
...
114c63d6d7
| Author | SHA1 | Date |
|---|---|---|
|
|
114c63d6d7 | |
|
|
2c12174d6b |
|
|
@ -1,10 +1,8 @@
|
|||
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({}: Route.MetaArgs) {
|
||||
export function meta( ) {
|
||||
return [
|
||||
{ title: "New React Router App" },
|
||||
{ name: "description", content: "Welcome to React Router!" },
|
||||
|
|
@ -12,11 +10,5 @@ export function meta({}: Route.MetaArgs) {
|
|||
}
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div>
|
||||
<Header />
|
||||
<TopNav />
|
||||
<CarouselDemo />
|
||||
</div>
|
||||
);
|
||||
return <CarouselDemo />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue