Skip to content

Commit

Permalink
chore(page.tsx): update link to unkey.dev in Home component
Browse files Browse the repository at this point in the history
chore(page.tsx): update link to unkey.dev in ProjectsPage component
feat(projects): add unkey.dev project to list of projects
feat(projects): update featured project to unkey.dev
feat(projects): update top2 project to planetfall
feat(projects): update top3 project to highstorm
feat(projects): add content for unkey.dev project
  • Loading branch information
chronark committed Jul 4, 2023
1 parent c5b1359 commit 10ece99
Show file tree
Hide file tree
Showing 4 changed files with 653 additions and 615 deletions.
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ export default function Home() {
and working on{" "}
<Link
target="_blank"
href="https://planetfall.io"
href="https://unkey.dev"
className="underline duration-500 hover:text-zinc-300"
>
planetfall.io
unkey.dev
</Link>{" "}
at night.
</h2>
Expand Down
8 changes: 3 additions & 5 deletions app/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@ export default async function ProjectsPage() {
return acc;
}, {} as Record<string, number>);

const featured = allProjects.find(
(project) => project.slug === "planetfall",
)!;
const top2 = allProjects.find((project) => project.slug === "highstorm")!;
const top3 = allProjects.find((project) => project.slug === "envshare")!;
const featured = allProjects.find((project) => project.slug === "unkey")!;
const top2 = allProjects.find((project) => project.slug === "planetfall")!;
const top3 = allProjects.find((project) => project.slug === "highstorm")!;
const sorted = allProjects
.filter((p) => p.published)
.filter(
Expand Down
13 changes: 13 additions & 0 deletions content/projects/unkey.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: unkey.dev
description: Unkey is an open source API Key management solution. It allows you to create, manage and validate API Keys for your users. It’s built with security and speed in mind.
date: "2023-07-01"
url: https://unkey.dev
published: true
repository: chronark/unkey
---


[![](https://unkey.dev/images/landing/app.png)](https://planetfall.io)

Unkey is an open source API Key management solution. It allows you to create, manage and validate API Keys for your users. It’s built with security and speed in mind.
Loading

0 comments on commit 10ece99

Please sign in to comment.