Skip to content

Commit 447cfef

Browse files
committed
tweak: add countryguessr
1 parent 73a8ff4 commit 447cfef

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

public/countryguessr.webp

179 KB
Loading

src/assets/projects.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
[
2+
{
3+
"name": "Countryguessr",
4+
"description": "Countryguessr is an interactive web application that helps players learn geography. It also supports a real-time competitive mode using an Elixir API.",
5+
"pic": "/countryguessr.webp",
6+
"tech": ["React", "Elixir", "TypeScript", "ShadCN", "Tailwind"],
7+
"links": [
8+
{
9+
"label": "Website",
10+
"icon": "link",
11+
"url": "https://countryguessr-cet.pages.dev/"
12+
},
13+
{
14+
"label": "UI Repo",
15+
"icon": "github",
16+
"url": "https://github.com/jcserv/countryguessr"
17+
},
18+
{
19+
"label": "API Repo",
20+
"icon": "github",
21+
"url": "https://github.com/jcserv/countryguessr-api"
22+
}
23+
]
24+
},
225
{
326
"name": "Bling My Deck",
427
"description": "Bling My Deck helps Magic: The Gathering players find the most expensive version of their favourite decks, using data from the ManaQL API. Built with a Django ETL pipeline for data ingestion from Scryfall.",

src/components/CommandBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const sections: SearchItem[] = [
6565
},
6666
];
6767

68-
const projs: SearchItem[] = projects.slice(0, 4).map((proj, index) => {
68+
const projs: SearchItem[] = projects.slice(0, 5).map((proj, index) => {
6969
return {
7070
label: proj.name,
7171
content: [proj.description, proj.tech.join(", ")],

src/sections/Projects/Projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Project } from "@/types/project";
1212

1313
import projects from "@/assets/projects.json";
1414

15-
const FEATURED_PROJECTS_COUNT = 7;
15+
const FEATURED_PROJECTS_COUNT = 8;
1616

1717
type LinkType = "github" | "youtube" | "devpost" | "link";
1818

0 commit comments

Comments
 (0)