reverse proxy basics (#609)

This commit is contained in:
Saeed Vaziry
2025-06-10 00:14:05 +02:00
committed by GitHub
parent 4e6491a080
commit 09a9735962
7 changed files with 101 additions and 33 deletions

View File

@ -2,6 +2,7 @@ import { CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, C
import { useEffect, useState } from 'react';
import { Button } from '@/components/ui/button';
import { CommandIcon, SearchIcon } from 'lucide-react';
import CreateServer from '@/pages/servers/components/create-server';
export default function AppCommand() {
const [open, setOpen] = useState(false);
@ -33,7 +34,9 @@ export default function AppCommand() {
<CommandList>
<CommandEmpty>No results found.</CommandEmpty>
<CommandGroup heading="Suggestions">
<CommandItem>Create server</CommandItem>
<CreateServer>
<CommandItem>Create server</CommandItem>
</CreateServer>
<CommandItem>Create project</CommandItem>
</CommandGroup>
</CommandList>