Added basic frontend setup

This commit is contained in:
GW_MC
2025-12-02 19:18:14 +08:00
parent 6b73b64a3a
commit 27173c01da
13 changed files with 4927 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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>;
}