Graphical PDS migrator for AT Protocol
at main 630 B view raw
1import { PageProps } from "fresh"; 2import MigrationSetup from "../../islands/MigrationSetup.tsx"; 3import DidPlcProgress from "../../islands/DidPlcProgress.tsx"; 4 5export default function TicketBooth(props: PageProps) { 6 const service = props.url.searchParams.get("service"); 7 const handle = props.url.searchParams.get("handle"); 8 9 return ( 10 <div class=" bg-gray-50 dark:bg-gray-900 p-4"> 11 <div class="max-w-2xl mx-auto"> 12 <h1 class="font-mono text-3xl font-bold text-gray-900 dark:text-white mb-8"> 13 Ticket Booth Self-Service Kiosk 14 </h1> 15 <DidPlcProgress /> 16 </div> 17 </div> 18 ); 19}