mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-07-23 09:56:57 +00:00
add button to hero
This commit is contained in:
+10
-5
@@ -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"
|
className="grid max-w-screen-2xl items-center gap-8 p-8 text-center md:grid-cols-2 md:text-left"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<h1>Convert your Chess PGN</h1>
|
<h1 className="text-3xl font-bold text-base-content md:text-4xl">
|
||||||
<h1>
|
Convert your Chess PGN
|
||||||
into a <span>Publishable PDF.</span>
|
|
||||||
</h1>
|
</h1>
|
||||||
<h2>
|
<h1 className="text-3xl font-bold text-base-content md:text-4xl">
|
||||||
|
into a <span className="text-(--accent)">Publishable PDF.</span>
|
||||||
|
</h1>
|
||||||
|
<h2 className="mb-8 mt-4 text-(--base-content)">
|
||||||
Upload and convert your games into a book format, along with variation
|
Upload and convert your games into a book format, along with variation
|
||||||
and annotations.
|
and annotations.
|
||||||
</h2>
|
</h2>
|
||||||
<Link to="/chessboard" className="">
|
<Link
|
||||||
|
to="/chessboard"
|
||||||
|
className="rounded-3xl text-xl font-bold btn btn-primary"
|
||||||
|
>
|
||||||
Get Started
|
Get Started
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -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 {*/
|
/*a {*/
|
||||||
/* text-decoration-thickness: 1px;*/
|
/* text-decoration-thickness: 1px;*/
|
||||||
/* text-underline-offset: 2px;*/
|
/* text-underline-offset: 2px;*/
|
||||||
|
|||||||
Reference in New Issue
Block a user