diff --git a/src/layouts/jobs-header.tsx b/src/layouts/jobs-header.tsx index 213ee13e..13839d3f 100644 --- a/src/layouts/jobs-header.tsx +++ b/src/layouts/jobs-header.tsx @@ -23,7 +23,6 @@ import { FormItem, FormMessage, } from '@/components/ui/form'; -import { Drawer, DrawerContent, DrawerTrigger } from '@/components/ui/drawer'; import { Input } from '@/components/ui/input'; import useSetQueryParams from '@/hooks/useSetQueryParams'; import { usePathname } from 'next/navigation'; @@ -32,6 +31,13 @@ import APP_PATHS from '@/config/path.config'; import { useEffect } from 'react'; import JobFilters from './job-filters'; import { cn } from '@/lib/utils'; +import { + Sheet, + SheetContent, + SheetHeader, + SheetTrigger, +} from '@/components/ui/sheet'; +import { ScrollArea } from '@/components/ui/scroll-area'; const FormSchema = z.object({ search: z.string().optional(), }); @@ -97,18 +103,18 @@ const JobsHeader = ({ searchParams }: { searchParams: JobQuerySchemaType }) => { )} {(isJobs || isHome) && ( - - - {' '} + + - - - - - + + + + + + + + + )}