so much stuff???

This commit is contained in:
Maze Winther
2025-06-22 13:07:02 +02:00
parent f2d27e578e
commit be97024868
34 changed files with 2443 additions and 111 deletions

View File

@ -1,3 +1,11 @@
import { Hero } from "@/components/landing/hero";
import { Header } from "@/components/header";
export default function Home() {
return <div>Hello World</div>;
}
return (
<div>
<Header />
<Hero />
</div>
);
}