This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
helseveileder/frontend/src/routes/info/+page.svelte
Sindre Kjelsrud 87a2914573
🚧 started fixing text from feedback
Co-authored-by: haraldnilsen <harald_998@hotmail.com>
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
2023-12-23 17:03:57 +01:00

24 lines
No EOL
752 B
Svelte

<div class="flex flex-col justify-between items-center h-full">
<div class="flex h-full mt-8">
<div class="flex flex-col gap-4 px-64 items-center">
<h1 class="text-3xl text-primary font-bold">Info</h1>
<p>Vi utfører en undersøkelse om kunstig intelligens (AI) i medisin. Vi ønsker å forstå hvordan AI kan fungere som en copilot for leger og pasienter.</p>
</div>
</div>
<div class="flex justify-center items-center gap-8 text-primary font-bold">
<button><a href="/">Tilbake</a></button>
</div>
</div>
<style lang="postcss">
:root {
color: theme(colors.content);
}
p {
font-size: large;
}
button {
font-size: large;
}
</style>