From 9d5147c060e5f395db195cb44935ee3e7f1b6890 Mon Sep 17 00:00:00 2001 From: Oier Bravo Urtasun Date: Tue, 10 Jun 2025 00:34:53 +0200 Subject: [PATCH] Bigger buttons --- src/layouts/BaseLayout.astro | 7 +++++-- src/pages/index.astro | 31 ++++++++++++++++--------------- 2 files changed, 21 insertions(+), 17 deletions(-) diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 7f837b7..1ef3a97 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -20,7 +20,10 @@ import './src/styles/global.css' {title} - KarKarCar - +
+
+ +
+
\ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index f8737ef..dea984c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -8,25 +8,26 @@ import KarKarCarAuth from "../components/KarKarCarAuth.astro" import { getUser, type KarKarCarSession } from "../api/index" import UserInfo from "../components/UserInfo.astro" import config from 'auth:config' +import { Image } from 'astro:assets'; +import logo from '../images/logo-urdina.png'; const session = await getUser(Astro.request, config); --- -
-
- - - {(session: KarKarCarSession) => ( - <> - {session ? - Logout - : - Login - } - - )} - -
+
+ KarKarCar
+ + + {(session: KarKarCarSession) => ( + <> + {session ? + Logout + : + Login + } + + )} + \ No newline at end of file