Merge remote-tracking branch 'origin/main' into feat/planes-vista

This commit is contained in:
2025-12-25 20:13:49 -06:00
10 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { createFileRoute } from '@tanstack/react-router'
import { AppLayout } from '@/components/layout/AppLayout'
import { PlanGrid } from '@/components/plans/PlanGrid'
export const Route = createFileRoute('/planes/')({
component: PlanesPage,
})
function PlanesPage() {
return (
<AppLayout>
<PlanGrid />
</AppLayout>
)
}