Files
mission-control/frontend/src/app/page.tsx
2026-02-04 02:28:51 +05:30

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>
);
}