diff --git a/app/src/components/pilots/Pilots.tsx b/app/src/components/pilots/Pilots.tsx index 61cebd1..cec785a 100644 --- a/app/src/components/pilots/Pilots.tsx +++ b/app/src/components/pilots/Pilots.tsx @@ -4,7 +4,6 @@ import { Button, Card, PlusIcon, - DatePicker, Typography } from '@noahspan/noahspan-components'; @@ -13,27 +12,24 @@ const Pilots: React.FC = () => { const onOpenCloseDrawer = () => { setIsDrawerOpen(!isDrawerOpen); }; - const [date, setDate] = useState(); return ( - -
- Pilots - + + Pilots + - -
+
); }; diff --git a/app/src/index.css b/app/src/index.css index 0f4754e..a81a008 100644 --- a/app/src/index.css +++ b/app/src/index.css @@ -3,6 +3,9 @@ @tailwind utilities; @layer base { + body { + @apply bg-black; + } h1 { @apply text-2xl font-bold leading-7 text-gray-900; }