diff --git a/packages/web/src/app/[domain]/components/noOrganizationCard.tsx b/packages/web/src/app/[domain]/components/noOrganizationCard.tsx deleted file mode 100644 index e13288d8..00000000 --- a/packages/web/src/app/[domain]/components/noOrganizationCard.tsx +++ /dev/null @@ -1,43 +0,0 @@ -"use client" - -import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" -import { Button } from "@/components/ui/button" -import { useRouter } from "next/navigation" -import { Building2 } from "lucide-react" - -export function NoOrganizationCard() { - const router = useRouter() - - const handleOnboard = () => { - router.push("/onboard") - } - - return ( -
- Please complete the onboarding process to create an organization. Alternatively, ask your teammate to invite - you to their organization. -
-- Something seem wrong? Contact us at team@sourcebot.dev -
-