add feature component and make routes thin

This commit is contained in:
2026-05-31 21:01:29 +02:00
parent 5fea214ead
commit 71e4378325
7 changed files with 100 additions and 30 deletions
+9
View File
@@ -0,0 +1,9 @@
import Section from "#/components/Section.tsx";
const Chessboard = () => (
<Section title="Convert PGN to PDF">
<p>section content</p>
</Section>
);
export default Chessboard;
+3
View File
@@ -0,0 +1,3 @@
const Contact = () => <div>Hello "/contact"!</div>;
export default Contact;
+57
View File
@@ -0,0 +1,57 @@
import { Link } from "@tanstack/react-router";
import Feature from "#/components/Feature.tsx";
import Section from "#/components/Section.tsx";
const Home = () => (
<main className="page-wrap px-4 pb-8 pt-14">
<section
id="hero"
className="grid max-w-screen-2xl items-center gap-8 p-8 text-center md:grid-cols-2 md:text-left"
>
<div>
<h1>Convert your Chess PGN</h1>
<h1>
into a <span>Publishable PDF.</span>
</h1>
<h2>
Upload and convert your games into a book format, along with variation
and annotations.
</h2>
<Link to="/chessboard" className="">
Get Started
</Link>
</div>
<div>
<p>example pdfs</p>
</div>
</section>
<Section
title="A Unique Chess Publication Service"
smallTitle="FEATURES"
description="Convert your chess PGN files into a publishable PDF, complete with diagrams of chosen positions."
>
<Feature title="Fast">
Quick PDF generation using a custom TeX Live server.
</Feature>
<Feature title="Easy">
Upload a PGN of your game, and choose the diagrams you want in your PDF.
Annotations are added automatically.
</Feature>
<Feature title="Reliable">
Dedicated servers ensure that downtime is kept to a minimum.
</Feature>
</Section>
<Section
title="Your Questions Answered"
smallTitle="FAQs"
description="Below we answer some of the most common questions we get regarding this service."
>
<p>section content</p>
</Section>
</main>
);
export default Home;