Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-15 14:28:13 +00:00
parent c0053cdfd1
commit 482ef08c4f
1 changed files with 14 additions and 0 deletions

14
app/page.tsx Normal file
View File

@ -0,0 +1,14 @@
import { RoiCalculator } from "@/components/roi-calculator";
import { Container } from "@/components/container";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<main className="min-h-screen flex flex-col">
<div className="flex-grow">
<RoiCalculator />
</div>
<Footer />
</main>
);
}