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;
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter