addRegularVessel.tsx
Wed May 29 2024 08:33:08 GMT+0000 (Coordinated Universal Time)
Saved by
@rafal_rydz
import { NextPage } from "next";
import {
BackHomeButton,
CommandPalletteButton,
MinimalPage,
PageHeading,
} from "ui";
import { VesselInfoForm } from "@/components/forms/vesselInfoForm";
import { BugReportButton, CommandInterface, Navigation } from "@/components";
const RegularVessel: NextPage = () => {
return (
<MinimalPage
pageTitle={"Regular Vessel Info | Vessel Interface"}
pageDescription={"Vessel Interface | Regular Vessel Info"}
commandPrompt
>
<div className="flex w-full flex-row justify-between pl-1 pt-1">
<div>
<BackHomeButton />
</div>
<Navigation />
<div className="flex flex-row gap-4">
<BugReportButton />
<CommandPalletteButton />
<CommandInterface />
</div>
</div>
<PageHeading text="Regular Vessel Info" />
<VesselInfoForm />
</MinimalPage>
);
};
export default RegularVessel;
content_copyCOPY
Comments