Update app/page.tsx
This commit is contained in:
parent
c0053cdfd1
commit
482ef08c4f
|
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue