Skip to content

Commit ffc3d51

Browse files
committed
Slight formatting
1 parent 4a2a889 commit ffc3d51

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

pages/guides/[category].tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ export default function CategoryWebpage({ guide, location }: Props & { location:
2525
</FormattedLink>
2626
</h2>
2727

28-
<h1 className="text-3xl font-bold">
28+
<h1 className="text-4xl font-bold pb-2">
2929
{guide.name}
3030
</h1>
31+
3132
<ul>
32-
{guide.pages.map(p => (<li key={p.name} id={urlify(p.name, false)}>
33-
<h2 className="text-2xl font-semibold">
34-
<FormattedLink href={`/guides/${urlify(guide.name, false)}/${urlify(p.name, true)}`} location={location} font="semibold" size="2xl">
35-
{p.name}
36-
</FormattedLink>
37-
</h2>
33+
{guide.pages.map(p => (<li key={p.name}>
34+
-{" "}
35+
<FormattedLink href={`/guides/${urlify(guide.name, false)}/${urlify(p.name, true)}`} location={location} font="semibold" size="xl">
36+
{p.name}
37+
</FormattedLink>
3838
</li>))}
3939
</ul>
4040
</Main>

pages/guides/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ export default function Guides(props: Props & { location: string }) {
1818
<meta property="og:description" content="View currently available guides and routes" />
1919
</Head>
2020

21-
<h1 className="text-5xl font-bold">
21+
<h1 className="text-5xl font-bold pb-2">
2222
Guides
2323
</h1>
24+
2425
<ul>
2526
{props.guides.map(g => (
2627
<li key={g}>

0 commit comments

Comments
 (0)