mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-21 04:16:38 +00:00
15 lines
427 B
TypeScript
15 lines
427 B
TypeScript
export default async function Page() {
|
|
return (
|
|
<>
|
|
<div className="space-y-0.5 select-none">
|
|
<h2 className="text-2xl font-bold tracking-tight">
|
|
Manage Resources
|
|
</h2>
|
|
<p className="text-muted-foreground">
|
|
Create secure proxies to your private resources.
|
|
</p>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|