-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.tsx
More file actions
21 lines (19 loc) · 822 Bytes
/
index.tsx
File metadata and controls
21 lines (19 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import CategoryCard from "./CategoryCard";
const Resources = () => (
<main className="flex h-full w-full flex-col">
<section className="flex h-full flex-col justify-center">
<h3 className="my-12 text-center text-3xl text-secondary">Resources</h3>
<div className="flex w-full justify-center bg-background">
<div className="grid grid-cols-3 place-items-center gap-y-6 sm:w-5/6 xl:w-3/4">
<CategoryCard name="HTML" slug="html" />
<CategoryCard name="CSS" slug="css" />
<CategoryCard name="JavaScript" slug="javascript" />
<CategoryCard name="Python" slug="python" />
<CategoryCard name="Java" slug="java" />
<CategoryCard name="C++" slug="c-plus-plus" />
</div>
</div>
</section>
</main>
);
export default Resources;