Files
OpenCut/apps/web/src/app/page.tsx
T

22 lines
439 B
TypeScript
Raw Normal View History

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";
import { SITE_URL } from "@/constants/site";
export const metadata: Metadata = {
alternates: {
canonical: SITE_URL,
},
};
2025-06-28 12:38:31 +02:00
export default async function Home() {
return (
<div>
<Header />
2025-07-15 23:26:04 +02:00
<Hero />
2025-06-28 12:38:31 +02:00
<Footer />
</div>
);
}