diff --git a/web/app/routes/logbook.flights.$id/route.tsx b/web/app/routes/logbook.flights.$id/route.tsx
index 28815e6..fe8bcdc 100644
--- a/web/app/routes/logbook.flights.$id/route.tsx
+++ b/web/app/routes/logbook.flights.$id/route.tsx
@@ -1,8 +1,17 @@
+import { LogItem, VerticalLogItem } from "@/ui/display/log-item";
import ErrorDisplay from "@/ui/error-display";
import { client } from "@/util/api";
-import { Center, Container, List, Loader, Stack, Text } from "@mantine/core";
+import {
+ Center,
+ Container,
+ Divider,
+ Grid,
+ Loader,
+ ScrollAreaAutosize,
+ Stack,
+ Title,
+} from "@mantine/core";
import { useParams } from "@remix-run/react";
-import { IconAlertTriangle } from "@tabler/icons-react";
import { useQuery } from "@tanstack/react-query";
export default function Flight() {
@@ -14,30 +23,239 @@ export default function Flight() {
await client.get(`/flights/${params.id}`).then((res) => res.data),
});
+ const log = flight.data;
+
return (
- {Object.entries(flight.data).map(([key, value]) =>
- value && value.length !== 0 ? (
-
+