2025-06-28 12:38:31 +02:00
|
|
|
import { Hero } from "@/components/landing/hero";
|
|
|
|
|
import { Header } from "@/components/header";
|
|
|
|
|
import { Footer } from "@/components/footer";
|
2025-07-24 13:35:06 +02:00
|
|
|
import type { Metadata } from "next";
|
2026-01-31 00:20:04 +01:00
|
|
|
import { SITE_URL } from "@/constants/site-constants";
|
2025-07-24 13:35:06 +02:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2026-01-31 00:20:04 +01:00
|
|
|
alternates: {
|
|
|
|
|
canonical: SITE_URL,
|
|
|
|
|
},
|
2025-07-24 13:35:06 +02:00
|
|
|
};
|
2025-06-28 12:38:31 +02:00
|
|
|
|
|
|
|
|
export default async function Home() {
|
2026-01-31 00:20:04 +01:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<Header />
|
|
|
|
|
<Hero />
|
|
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-06-28 12:38:31 +02:00
|
|
|
}
|