12 lines
415 B
TypeScript
12 lines
415 B
TypeScript
// app/portal/page.tsx
|
|
export default function PortalHome() {
|
|
return (
|
|
<div className="rounded-lg border p-6">
|
|
<h2 className="text-xl font-semibold mb-2">Dashboard</h2>
|
|
<p className="opacity-80">
|
|
Pick a tab to get started. You can add and manage Rigs, Laser Settings, Sources, Materials, Projects,
|
|
or jump into Utilities and Account.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|