feat: Implement missing URL pattern routes

This commit is contained in:
gpt-engineer-app[bot]
2025-10-02 19:39:35 +00:00
parent f9825eefbb
commit 0f087b2921
11 changed files with 1435 additions and 5 deletions

View File

@@ -240,7 +240,18 @@ export default function PropertyOwnerDetail() {
<TabsContent value="parks">
<Card>
<CardContent className="p-6">
<p className="text-muted-foreground">Parks owned by {owner.name} will be displayed here.</p>
<div className="flex items-center justify-between mb-4">
<h2 className="text-2xl font-bold">Parks</h2>
<Button
variant="outline"
onClick={() => navigate(`/owners/${owner.slug}/parks`)}
>
View All Parks
</Button>
</div>
<p className="text-muted-foreground">
View all parks owned by {owner.name}
</p>
</CardContent>
</Card>
</TabsContent>