11 lines
346 B
TypeScript
11 lines
346 B
TypeScript
import { Text } from '@radix-ui/themes';
|
|
import type { Route } from './+types/home';
|
|
|
|
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>;
|
|
}
|