Skip to content

Commit

Permalink
fleshed out the index page's wording a bit
Browse files Browse the repository at this point in the history
not really sure how i want this to turn out to be honest,
but i think this is fine for the time being.
  • Loading branch information
ndepaola committed Jul 21, 2023
1 parent 43109c6 commit 8e5c2dd
Showing 1 changed file with 39 additions and 4 deletions.
43 changes: 39 additions & 4 deletions frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ import Button from "react-bootstrap/Button";
import Col from "react-bootstrap/Col";
import Row from "react-bootstrap/Row";

import { MakePlayingCards, MakePlayingCardsURL } from "@/common/constants";
import {
MakePlayingCards,
MakePlayingCardsURL,
ProjectName,
} from "@/common/constants";
import { useAppSelector } from "@/common/types";
import {
selectBackendURL,
Expand Down Expand Up @@ -43,7 +47,16 @@ function ProjectOverview() {
<Row>
<Col lg={6} md={6} sm={12} xs={12}>
<h1>Self-Service Card Printing for Tabletop Gaming</h1>
<p>Body text to accompany heading 1</p>
<ul>
<li>
{ProjectName} is the best way for individuals to have playtest
cards professionally printed for casual tabletop gaming.
</li>
<li>
It&apos;s fully open-source software (licensed under GPL-3) and
all of its features will always be free.
</li>
</ul>
</Col>
<Col lg={6} md={6} sm={12} xs={12}></Col>
</Row>
Expand All @@ -52,7 +65,20 @@ function ProjectOverview() {
<Col lg={6} md={6} sm={12} xs={12}></Col>
<Col lg={6} md={6} sm={12} xs={12}>
<h1>Community-Driven Card Image Databases</h1>
<p>Body text to accompany header 2</p>
<ul>
<li>
Choose your favourite renders and artworks made by your community
to bling out your project!
</li>
<li>
Use our rich project editor to fine-tune exactly how you&apos;d
like it to turn out.
</li>
<li>
Browse the cards that creators in your community have added to the
site recently.
</li>
</ul>
</Col>
</Row>
<br />
Expand All @@ -64,7 +90,16 @@ function ProjectOverview() {
{MakePlayingCards}
</a>
</h1>
<p>Body text to accompany heading 3</p>
<ul>
<li>
Our desktop tool will download all the images required for your
order and automatically place your order with{" "}
<a href={MakePlayingCardsURL} target="_blank">
{MakePlayingCards}
</a>
, who will mail the cards right to your door!
</li>
</ul>
</Col>
<Col lg={6} md={6} sm={12} xs={12}></Col>
</Row>
Expand Down

0 comments on commit 8e5c2dd

Please sign in to comment.