Skip to content

Commit

Permalink
Removed unsed things
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshaygore1 committed Oct 17, 2024
1 parent 58c0c2e commit 6db8662
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
1 change: 0 additions & 1 deletion apps/playground-web/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// components
import Playground from '@/components/Playground/Playground';
import Footer from '@/components/Footer/Footer';

export default function Home() {
return (
Expand Down
22 changes: 0 additions & 22 deletions apps/playground-web/components/Playground/Playground.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client';

import Image from 'next/image';
import SearchBox from '@/components/Search/SearchBox';
import { TerminalUI } from './TerminalUI';

Expand All @@ -22,24 +21,3 @@ export default function Playground() {
</div>
);
}
function Header() {
return (
<header
data-testid="playground-header"
className="navbar flex items-center justify-between py-5"
>
<div className="flex items-center">
<Image
src="/images/dicedb-logo-light.png"
width={110}
height={110}
priority={true}
alt="DiceDB logo"
className="object-contain"
unoptimized
/>
<h2 className="font-light text-2xl ml-2">PlayGround</h2>
</div>
</header>
);
}

0 comments on commit 6db8662

Please sign in to comment.