add subscription to org

This commit is contained in:
2026-01-17 23:45:25 -03:00
parent d0a9998bf4
commit 3f0f7ec1e1
14 changed files with 550 additions and 367 deletions

View File

@@ -0,0 +1,11 @@
import type { Route } from './+types/route'
import { Card, CardContent } from '@repo/ui/components/ui/card'
export default function Route({}: Route.ComponentProps) {
return (
<Card>
<CardContent>address</CardContent>
</Card>
)
}