chore: center and blur index div

This commit is contained in:
Lio 2025-08-20 12:26:07 +02:00
parent 029d8b9ce5
commit 1d88c03bc7

View file

@ -21,11 +21,11 @@ const config = {
---
<aside>
<div class="p-4">
<a href="/">
<div class="p-4 backdrop-blur-md backdrop-brightness-50 rounded-lg ">
<a href="/" >
{
icon && (
<Image class={"icon"} src={icon} width={10} height={10} alt={""} />
<Image class={"w-40 h-40 mx-auto object-cover object-center rounded-full"} src={icon} width={10} height={10} alt={""} />
)
}
<h1 class="font-bold text-2xl pt-4">{config.title}</h1></a
@ -68,15 +68,4 @@ const config = {
</div>
</div>
</div>
<style>
img.icon {
width: 10rem;
height: 10rem;
margin: 0 auto;
object-fit: cover;
object-position: center;
border-radius: 50%;
}
</style>
</aside>