Files
krishnacinema/app/page.tsx
2025-12-26 11:55:04 -06:00

13 lines
227 B
TypeScript

import Image from "next/image";
import GLTFViewer from "@/components/GLTFViewer";
export default function Home() {
return (
<main className="w-screen h-screen">
<GLTFViewer></GLTFViewer>
</main>
);
}