diff --git a/src/components/Playground/Playground.tsx b/src/components/Playground/Playground.tsx index a1faf2a..91bf918 100644 --- a/src/components/Playground/Playground.tsx +++ b/src/components/Playground/Playground.tsx @@ -3,7 +3,7 @@ // Components import Cli from '@/components/CLI/CLI'; import SearchBox from '@/components/Search/SearchBox'; -import { Dice1, Dice3, Dice5 } from 'lucide-react'; +import { Dice1, Dice3, Dice5, Info } from 'lucide-react'; // utils import { formatTime } from '@/shared/utils/commonUtils'; @@ -33,7 +33,7 @@ export default function Playground() {
-
+
@@ -42,22 +42,30 @@ export default function Playground() {
-
+
-
-
- Cleanup in : {formatTime(timeLeft)} mins +
+
+
+ Cleanup in : {formatTime(timeLeft)} mins +
+
+ Commands left: {commandsLeft} +
-
- Command left: {commandsLeft} +
+ +

+ DiceDB instance is shared across all users. +

-
+
diff --git a/src/components/Search/SearchBox.tsx b/src/components/Search/SearchBox.tsx index 08b5228..f0ce359 100644 --- a/src/components/Search/SearchBox.tsx +++ b/src/components/Search/SearchBox.tsx @@ -25,7 +25,7 @@ export default function SearchBox({ search, setSearch }: SearchBoxProps) { value={search} onChange={(e) => setSearch(e.target.value)} placeholder="Search commands..." - className="bg-transparent border-none outline-none w-full py-2 text-gray-900 font-Assistant" + className="bg-transparent border-none outline-none w-full py-2 text-gray-900 font-assistant" />