Skip to content

Commit f52d88d

Browse files
committed
mention functors on home page
1 parent dc78e13 commit f52d88d

1 file changed

Lines changed: 33 additions & 7 deletions

File tree

src/routes/+page.svelte

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import {
55
faChartBar,
66
faChartDiagram,
7+
faProjectDiagram,
78
faSearch,
89
faUsers,
910
} from '@fortawesome/free-solid-svg-icons'
@@ -16,8 +17,9 @@
1617

1718
<p>
1819
<i>CatDat</i> provides a growing collection of
19-
<a class="accent" href="/categories">categories</a>, each with detailed descriptions
20-
and properties. Built by and for those who love
20+
<a class="accent" href="/categories">categories</a> and
21+
<a class="accent" href="/functors">functors</a>, each with detailed descriptions and
22+
properties. Built by and for those who love
2123
<a href="https://en.wikipedia.org/wiki/Category_theory" target="_blank">
2224
category theory
2325
</a>.
@@ -40,14 +42,30 @@
4042
<article class="feature-card">
4143
<h3>
4244
<Fa icon={faChartDiagram} />
43-
Deduction System
45+
Category Deductions
4446
</h3>
4547

4648
<p>
4749
A list of <a class="accent" href="/category-implications">implications</a>
4850
between
49-
<a class="accent" href="/category-properties">properties</a> allows for automatic
50-
deduction of satisfied and unsatisfied properties from more basic ones.
51+
<a class="accent" href="/category-properties">properties of categories</a>
52+
allows for automatic deduction of satisfied and unsatisfied properties from more
53+
basic ones.
54+
</p>
55+
</article>
56+
57+
<article class="feature-card">
58+
<h3>
59+
<Fa icon={faProjectDiagram} />
60+
Functor Deductions
61+
</h3>
62+
63+
<p>
64+
There is also a list of <a class="accent" href="/functor-implications"
65+
>implications</a
66+
>
67+
between <a class="accent" href="/functor-properties">functor properties</a>,
68+
enabling automatic reasoning about functors.
5169
</p>
5270
</article>
5371

@@ -58,7 +76,9 @@
5876
<p>
5977
You can easily <a class="accent" href="/category-search"
6078
>search for categories</a
61-
> that satisfy specific properties while not satisfying others.
79+
>
80+
and <a class="accent" href="/functor-search">search for functors</a>
81+
that satisfy specific properties while not satisfying others.
6282
</p>
6383
</article>
6484

@@ -72,7 +92,7 @@
7292
</p>
7393
</article>
7494

75-
<article class="feature-card">
95+
<article class="feature-card centered">
7696
<h3>
7797
<Fa icon={faUsers} /> Community-driven
7898
</h3>
@@ -104,6 +124,12 @@
104124
105125
@media (min-width: 600px) {
106126
grid-template-columns: repeat(2, 1fr);
127+
128+
.centered {
129+
width: 50%;
130+
margin-inline: auto;
131+
grid-column: 1 / -1;
132+
}
107133
}
108134
}
109135

0 commit comments

Comments
 (0)