Spaces:
Paused
Paused
File size: 521 Bytes
054d282 c0c5f59 054d282 1f57b62 054d282 c0c5f59 054d282 c098e98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import HomeHeader from "@/components/HomeHeader";
import HomeSearch from "@/components/HomeSearch";
import { logo } from "@/util";
import Image from "next/image";
import "@/app/globals.css";
export default function Home() {
return (
<>
{/* Header */}
<HomeHeader />
{/* body */}
<div className="flex flex-col items-center mt-24">
<Image
width="300"
height="100"
src={`/logo${logo()}.png`}
/>
<HomeSearch/>
</div>
</>
);
} |