Added basic frontend setup
This commit is contained in:
10
apps/frontend/app/routes/home.tsx
Normal file
10
apps/frontend/app/routes/home.tsx
Normal 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>;
|
||||
}
|
||||
Reference in New Issue
Block a user