Files
InteractiveAvatarNextJSDemo/app/page.tsx
Joby 935b10279b Feat/livekit (#9)
* feat: using version 2.0 skd

* feat: using version 2.0 skd

* feat: using version 2.0 skd
2024-09-06 20:59:55 -07:00

16 lines
387 B
TypeScript

"use client";
import InteractiveAvatar from "@/components/InteractiveAvatar";
export default function App() {
return (
<div className="w-screen h-screen flex flex-col">
<div className="w-[900px] flex flex-col items-start justify-start gap-5 mx-auto pt-4 pb-20">
<div className="w-full">
<InteractiveAvatar />
</div>
</div>
</div>
);
}