mirror of
https://github.com/AderKonstantin/aderktech-chronark.com-.git
synced 2025-06-08 13:48:42 +03:00
chore(page.tsx): update link to unkey.dev in Home component
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
This commit is contained in:
parent
c5b1359566
commit
10ece99aac
@ -49,10 +49,10 @@ export default function Home() {
|
|||||||
and working on{" "}
|
and working on{" "}
|
||||||
<Link
|
<Link
|
||||||
target="_blank"
|
target="_blank"
|
||||||
href="https://planetfall.io"
|
href="https://unkey.dev"
|
||||||
className="underline duration-500 hover:text-zinc-300"
|
className="underline duration-500 hover:text-zinc-300"
|
||||||
>
|
>
|
||||||
planetfall.io
|
unkey.dev
|
||||||
</Link>{" "}
|
</Link>{" "}
|
||||||
at night.
|
at night.
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -20,11 +20,9 @@ export default async function ProjectsPage() {
|
|||||||
return acc;
|
return acc;
|
||||||
}, {} as Record<string, number>);
|
}, {} as Record<string, number>);
|
||||||
|
|
||||||
const featured = allProjects.find(
|
const featured = allProjects.find((project) => project.slug === "unkey")!;
|
||||||
(project) => project.slug === "planetfall",
|
const top2 = allProjects.find((project) => project.slug === "planetfall")!;
|
||||||
)!;
|
const top3 = allProjects.find((project) => project.slug === "highstorm")!;
|
||||||
const top2 = allProjects.find((project) => project.slug === "highstorm")!;
|
|
||||||
const top3 = allProjects.find((project) => project.slug === "envshare")!;
|
|
||||||
const sorted = allProjects
|
const sorted = allProjects
|
||||||
.filter((p) => p.published)
|
.filter((p) => p.published)
|
||||||
.filter(
|
.filter(
|
||||||
|
13
content/projects/unkey.mdx
Normal file
13
content/projects/unkey.mdx
Normal file
@ -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://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.
|
1259
pnpm-lock.yaml
generated
1259
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user