From 528addd6c79c4914282c02fd85b12b4f756d1f92 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 20:17:42 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c1a1139..117fc00 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -65,7 +65,10 @@ export default function LandingPage() { description="Klipptider skrapar Bokadirekt åt dig och visar lediga tider från de bästa salongerna i Kungsbacka. Filtrera på datum och salong, klicka och boka direkt!" buttons={[ { - text: "Hitta din tid nu", href: "#features"}, + text: "Hitta din tid nu", onClick: () => { + document.getElementById("features")?.scrollIntoView({ behavior: "smooth" }); + }, + }, ]} imageSrc="http://img.b2bpic.net/free-photo/filling-beer-glass_23-2148111236.jpg" imageAlt="A screenshot of the Klipptider web app dashboard showing available hair salon appointments filtered by date and salon." @@ -277,4 +280,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}