2022-12-08 16:52:33 +01:00
|
|
|
---
|
2023-06-02 20:16:23 +02:00
|
|
|
import Layout from "@layouts/Layout.astro";
|
|
|
|
import Navbar from "@components/widgets/Navbar.astro";
|
|
|
|
import Container from "@components/atoms/Container.astro";
|
2023-07-13 21:29:12 +02:00
|
|
|
import { PROJECTS } from "~/config";
|
2023-06-03 21:53:59 +02:00
|
|
|
import Button from "~/components/widgets/Button.astro";
|
2023-01-01 13:51:10 +01:00
|
|
|
|
2023-07-13 21:29:12 +02:00
|
|
|
for (const project of PROJECTS) {
|
2023-04-08 13:20:27 +02:00
|
|
|
try {
|
2023-04-08 13:30:01 +02:00
|
|
|
const rawRepository = await fetch(
|
|
|
|
`https://api.github.com/repos/${project.link.slice(19)}`,
|
|
|
|
{
|
2023-04-08 13:20:27 +02:00
|
|
|
headers: {
|
|
|
|
Authorization: `Bearer ${import.meta.env.GITHUB_ACCESS_TOKEN}`,
|
|
|
|
},
|
2023-08-30 16:26:12 +02:00
|
|
|
},
|
2023-04-08 13:30:01 +02:00
|
|
|
).catch(console.log);
|
|
|
|
if (!rawRepository) {
|
|
|
|
project.stats = {
|
|
|
|
forks: 0,
|
|
|
|
stars: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
2023-01-01 13:51:10 +01:00
|
|
|
|
2023-04-08 13:30:01 +02:00
|
|
|
const repository = await rawRepository.json();
|
2023-04-08 13:12:39 +02:00
|
|
|
|
2023-04-08 13:20:27 +02:00
|
|
|
project.stats = {
|
|
|
|
forks: repository.forks,
|
|
|
|
stars: repository.stargazers_count,
|
|
|
|
};
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|
2023-01-01 13:51:10 +01:00
|
|
|
}
|
2023-03-27 18:41:59 +02:00
|
|
|
|
2023-07-13 21:29:12 +02:00
|
|
|
PROJECTS.sort((a, b) => a.name.localeCompare(b.name));
|
2022-12-08 16:52:33 +01:00
|
|
|
---
|
|
|
|
|
2023-02-25 11:01:29 +01:00
|
|
|
<Layout
|
2023-07-18 23:39:32 +02:00
|
|
|
title="xHyroM - My projects"
|
2023-02-25 11:01:29 +01:00
|
|
|
schemaOrg={{
|
|
|
|
"@context": "https://schema.org/",
|
|
|
|
"@type": "ItemList",
|
2023-02-25 12:19:12 +01:00
|
|
|
name: "Projects",
|
2023-07-13 21:29:12 +02:00
|
|
|
itemListElement: PROJECTS.map((project, i) => ({
|
2023-02-25 11:01:29 +01:00
|
|
|
"@type": "ListItem",
|
|
|
|
position: i + 1,
|
|
|
|
name: project.name,
|
|
|
|
url: project.link,
|
|
|
|
})),
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Navbar />
|
|
|
|
<h1 class="w-full py-32 text-center text-5xl font-extrabold text-white">
|
|
|
|
Projects
|
|
|
|
</h1>
|
2022-12-08 16:52:33 +01:00
|
|
|
|
2023-05-14 11:36:13 +02:00
|
|
|
<Container class="pb-4">
|
2023-07-15 14:07:35 +02:00
|
|
|
<main class="text-white">
|
|
|
|
<section class="flex flex-wrap justify-center gap-12 pb-4">
|
|
|
|
{
|
|
|
|
PROJECTS.map((project) => (
|
2023-07-21 09:31:27 +02:00
|
|
|
<section class="flex min-h-max w-80 flex-col justify-between rounded-md border-[1px] border-neutral-800 bg-dark-800 p-6 md:w-96">
|
2023-08-30 16:26:12 +02:00
|
|
|
<div class="flex justify-between">
|
2023-07-15 14:07:35 +02:00
|
|
|
<h2 class="mb-4 break-words text-3xl font-bold">
|
|
|
|
{project.name}
|
|
|
|
</h2>
|
2023-08-06 16:25:56 +02:00
|
|
|
<div class="flex">
|
|
|
|
<div class="ml-4 flex h-fit translate-y-1 items-center justify-center gap-2 rounded-lg bg-neutral-800 px-4 py-1 text-neutral-300">
|
|
|
|
<div class="flex gap-1">
|
|
|
|
<img
|
|
|
|
src="/icons/star.svg"
|
|
|
|
alt=""
|
|
|
|
class="h-[21px] w-[21px] translate-y-[1px]"
|
|
|
|
/>
|
|
|
|
<p>{project.stats!.stars}</p>
|
|
|
|
</div>
|
|
|
|
<div class="flex gap-1">
|
|
|
|
{" "}
|
|
|
|
<img
|
|
|
|
src="/icons/code-fork-solid.svg"
|
|
|
|
alt=""
|
|
|
|
class="h-[21px] w-[21px] translate-y-[1px]"
|
|
|
|
/>
|
|
|
|
<p>{project.stats!.forks}</p>
|
|
|
|
</div>
|
2023-07-15 14:07:35 +02:00
|
|
|
</div>
|
2023-02-25 11:01:29 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-18 20:23:55 +01:00
|
|
|
|
2023-07-15 14:07:35 +02:00
|
|
|
<p class="mb-6 break-all text-neutral-300">{project.desc}</p>
|
|
|
|
<div>
|
|
|
|
<Button
|
|
|
|
label="GitHub"
|
|
|
|
link={project.link}
|
|
|
|
type="primary"
|
|
|
|
icon="/icons/arrow-up-right.svg"
|
|
|
|
iconClass="ml-2 mt-[1px] h-[23px] w-5"
|
|
|
|
/>
|
|
|
|
<Button
|
2023-07-15 15:08:49 +02:00
|
|
|
label={project.button?.name ?? "Docs"}
|
|
|
|
link={project.button?.link ?? project.link}
|
2023-07-15 14:07:35 +02:00
|
|
|
type="secondary"
|
|
|
|
icon="/icons/book-open.svg"
|
|
|
|
iconClass="mr-2 h-6 w-5"
|
|
|
|
iconPosition="left"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="text-center text-xl">
|
|
|
|
<p>
|
|
|
|
You can also look at my repositories on <a
|
2023-07-21 09:31:27 +02:00
|
|
|
class="text-gold-500"
|
2023-07-15 14:07:35 +02:00
|
|
|
href="https://github.com/xHyroM">github</a
|
|
|
|
>. 👀
|
|
|
|
</p>
|
|
|
|
</section>
|
2023-02-25 11:01:29 +01:00
|
|
|
</main>
|
|
|
|
</Container>
|
2022-12-08 16:52:33 +01:00
|
|
|
</Layout>
|