* feat: using version 2.0 skd * feat: using version 2.0 skd * feat: using version 2.0 skd
16 lines
387 B
TypeScript
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>
|
|
);
|
|
}
|