13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
"use client";
|
|
|
|
import { LandingHero } from "@/components/organisms/LandingHero";
|
|
import { LandingShell } from "@/components/templates/LandingShell";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<LandingShell>
|
|
<LandingHero />
|
|
</LandingShell>
|
|
);
|
|
}
|