Added create page

This commit is contained in:
2025-06-26 19:53:54 +02:00
parent 6629422091
commit b60245d0a7
10 changed files with 729 additions and 12 deletions

View File

@@ -1,8 +1,13 @@
import { AdvancedUrlFormCard } from "@/components/dashboard/advanced-url-form-card"
export default function DashboardCreatePage() {
return (
<div className="p-6">
<h1 className="text-2xl font-bold text-foreground mb-4 block">Create</h1>
<h1 className="text-muted-foreground block">This is the create page where you can add new items.</h1>
<div className="p-6 space-y-6">
<div>
<h1 className="text-2xl font-bold text-foreground mb-2">Create Short Link</h1>
<p className="text-muted-foreground">Create a new short link with advanced configuration options.</p>
</div>
<AdvancedUrlFormCard />
</div>
)
}