12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
import { Hero } from "~/components/sections/hero";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="min-h-screen bg-white">
|
|
<main>
|
|
<Hero />
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|