import { BoxPlus } from 'icons' import { Plus } from 'lucide-react' import Link from 'next/link' import { Button, Card, Skeleton, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from 'ui' import { EmptyStatePresentational } from 'ui-patterns' import { ShimmeringCard } from './ShimmeringCard' import { HomeIcon } from '@/components/layouts/Navigation/LayoutHeader/HomeIcon' import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled' export const Header = () => { return (
) } export const LoadingTableView = () => { return ( Project Status Compute Region Created {[...Array(3)].map((_, i) => ( ))}
) } export const LoadingCardView = () => { return ( ) } export const NoProjectsState = ({ slug }: { slug: string }) => { const projectCreationEnabled = useIsFeatureEnabled('projects:create') return ( {projectCreationEnabled && ( )} ) } export const NoOrganizationsState = () => { return ( ) }