Refactor with new styling convention

This commit is contained in:
Nicola Spadari
2025-01-02 21:58:06 +01:00
parent dfb48cf7ee
commit c1752c0701
19 changed files with 108 additions and 109 deletions

View File

@@ -1,17 +1,17 @@
<template>
<div grid place-items-center px-6 py-24 sm="py-32" lg="px-8">
<div text-center>
<p text-base text-emerald-500 font-semibold>
<div clas="grid place-items-center px-6 py-24" sm="py-32" lg="px-8">
<div class="text-center">
<p class="text-base text-emerald-500 font-semibold">
404
</p>
<h1 mt-4 text-3xl text-neutral-300 font-bold tracking-tight sm="text-5xl">
<h1 class="mt-4 text-3xl text-neutral-300 font-bold tracking-tight" sm="text-5xl">
Page not found
</h1>
<p mt-6 text-base text-neutral-400 leading-7>
<p class="mt-6 text-base text-neutral-400 leading-7">
Sorry, we couldn't find the page you're looking for.
</p>
<div mt-10 flex items-center justify-center gap-x-6>
<Hyperlink to="/" px-7>
<div class="mt-10 flex items-center justify-center gap-x-6">
<Hyperlink to="/" class="px-7">
Back
</Hyperlink>
</div>