Files
YANPM/apps/frontend/app/routes/home.tsx
2025-12-05 20:28:59 +08:00

14 lines
483 B
TypeScript

import { Text } from '@radix-ui/themes';
import type { Route } from './+types/home';
import { useContext } from 'react';
import { useApi } from '../providers/ApiProvider';
import { useQuery } from '@tanstack/react-query';
export function meta({}: Route.MetaArgs) {
return [{ title: 'YANPM' }, { name: 'description', content: 'Welcome to Yet Another Nginx Proxy Manager!' }];
}
export default function Home() {
return <Text>Welcome to Yet Another Nginx Proxy Manager!</Text>;
}