import {useLoaderData} from '@remix-run/react'; import styles from './index.module.css'; export function loader({request}) { return { host: new URL(request.url).host, }; } export const meta = () => { return [ { title: 'Silphius', }, { name: 'description', content: 'Silphius is an action RPG and homestead simulator', }, ]; }; export default function Index() { const {host} = useLoaderData(); return (

Silphius

); }