Productionize EventSphere platform

This commit is contained in:
Austin A
2026-04-25 21:02:19 +01:00
commit 1f1d30a9f5
171 changed files with 18682 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { PublicShell } from "./PublicShell";
import { Card } from "@/components/ui/Card";
import type { ReactNode } from "react";
export function FlowPage({ title, step, children }: { title: string; step: string; children?: ReactNode }) {
return <PublicShell><main className="mx-auto max-w-3xl px-6 py-16">
<Card className="p-8">
<div className="text-sm font-bold text-accent">{step}</div>
<h1 className="mt-3 text-4xl font-black">{title}</h1>
{children ? <div className="mt-8">{children}</div> : null}
</Card>
</main></PublicShell>;
}