diff --git a/apps/playground-web/app/page.tsx b/apps/playground-web/app/page.tsx index d393486..a1ec399 100644 --- a/apps/playground-web/app/page.tsx +++ b/apps/playground-web/app/page.tsx @@ -1,6 +1,5 @@ // components import Playground from '@/components/Playground/Playground'; -import Footer from '@/components/Footer/Footer'; export default function Home() { return ( diff --git a/apps/playground-web/components/Playground/Playground.tsx b/apps/playground-web/components/Playground/Playground.tsx index 802da05..c001cea 100644 --- a/apps/playground-web/components/Playground/Playground.tsx +++ b/apps/playground-web/components/Playground/Playground.tsx @@ -1,6 +1,5 @@ 'use client'; -import Image from 'next/image'; import SearchBox from '@/components/Search/SearchBox'; import { TerminalUI } from './TerminalUI'; @@ -22,24 +21,3 @@ export default function Playground() { ); } -function Header() { - return ( -
-
- DiceDB logo -

PlayGround

-
-
- ); -}