This commit is contained in:
Ishaan Dey
2024-04-08 23:40:42 -04:00
parent f32d84d2c2
commit dce7166a91
4 changed files with 82 additions and 34 deletions

View File

@ -1,3 +1,4 @@
import Navbar from "@/components/navbar"
import dynamic from "next/dynamic"
import Image from "next/image"
@ -8,7 +9,7 @@ const CodeEditor = dynamic(() => import("@/components/editor"), {
export default function Home() {
return (
<div className="w-screen flex flex-col h-screen bg-background">
<div className="h-12 flex">NAVBAR</div>
<Navbar />
<div className="w-screen flex grow">
<CodeEditor />
</div>