2025-06-22 13:07:02 +02:00
|
|
|
import { Hero } from "@/components/landing/hero";
|
|
|
|
|
import { Header } from "@/components/header";
|
|
|
|
|
|
2025-06-22 10:05:33 +02:00
|
|
|
export default function Home() {
|
2025-06-22 13:07:02 +02:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<Header />
|
|
|
|
|
<Hero />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|