import { Box, Button, Card, Flex, Grid, Heading, Text } from '@radix-ui/themes'; import type { Route } from './+types/home'; import TablePlaceholder from '../components/home/TablePlaceholder'; import { useLayout } from '../providers/LayoutProvider'; import { useEnsureLoggedIn } from '../hooks/ensureLoggedIn'; // eslint-disable-next-line no-empty-pattern export function meta({}: Route.MetaArgs) { return [{ title: 'Proxy Host Demo | YANPM' }, { name: 'description', content: 'Demo of the unified navigation paradigm.' }]; } export default function ProxyHostDemo() { useEnsureLoggedIn(); const { activeTab } = useLayout(); return ( {activeTab} This is the {activeTab.toLowerCase()} page demo. Status Overview Everything is running smoothly in your {activeTab.toLowerCase()} section. Recent Activity No recent changes detected in the last 24 hours. Quick Actions Common tasks related to {activeTab.toLowerCase()} are available here. {activeTab === 'Proxy Hosts' && ( )} ); }