From aefb308497582f033c7b88c1b74ffcc5711e0671 Mon Sep 17 00:00:00 2001 From: Owen Date: Sun, 31 May 2026 21:08:58 +0200 Subject: [PATCH] add button to hero --- src/pages/index.tsx | 15 ++++++++++----- src/styles.css | 14 ++++++++++++++ 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 35478a7..a7f5bf2 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -9,15 +9,20 @@ const Home = () => ( className="grid max-w-screen-2xl items-center gap-8 p-8 text-center md:grid-cols-2 md:text-left" >
-

Convert your Chess PGN

-

- into a Publishable PDF. +

+ Convert your Chess PGN

-

+

+ into a Publishable PDF. +

+

Upload and convert your games into a book format, along with variation and annotations.

- + Get Started
diff --git a/src/styles.css b/src/styles.css index 036a879..89916f1 100644 --- a/src/styles.css +++ b/src/styles.css @@ -62,6 +62,20 @@ body { } } +.btn { + padding: 1rem 4rem; +} + +.btn-primary { + background-color: var(--accent); + color: var(--bg-base); + transition: filter 0.3s ease; + + &:hover { + filter: brightness(0.85); + } +} + /*a {*/ /* text-decoration-thickness: 1px;*/ /* text-underline-offset: 2px;*/