mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
wip
This commit is contained in:
@ -1 +1,8 @@
|
||||
@import '@documenso/ui/styles/theme.css';
|
||||
|
||||
@layer base {
|
||||
:root {
|
||||
--font-sans: 'Inter';
|
||||
--font-signature: 'Caveat';
|
||||
}
|
||||
}
|
||||
|
||||
@ -21,6 +21,10 @@ export const links: Route.LinksFunction = () => [
|
||||
rel: 'stylesheet',
|
||||
href: 'https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap',
|
||||
},
|
||||
{
|
||||
rel: 'stylesheet',
|
||||
href: 'https://fonts.googleapis.com/css2?family=Caveat:wght@400..600&display=swap',
|
||||
},
|
||||
{ rel: 'stylesheet', href: stylesheet },
|
||||
];
|
||||
|
||||
|
||||
@ -8,6 +8,12 @@ export function meta({}: Route.MetaArgs) {
|
||||
];
|
||||
}
|
||||
|
||||
export const loader = () => {
|
||||
return {
|
||||
message: 'Hello World' as const,
|
||||
};
|
||||
};
|
||||
|
||||
export default function Home() {
|
||||
return <Welcome />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user