From 8b8261664be32b0e790bfad708287e02b8208ef9 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Fri, 16 Aug 2024 19:47:21 -0500 Subject: [PATCH] adding pilot --- app/src/components/pilots/Pilots.tsx | 34 ++++++++++++---------------- app/src/index.css | 3 +++ 2 files changed, 18 insertions(+), 19 deletions(-) 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; }