Added dotfiles to projects

This commit is contained in:
2024-11-13 23:35:48 +02:00
parent 65e340ff8d
commit e909da9e84
2 changed files with 16 additions and 14 deletions

View File

@@ -6,9 +6,10 @@ interface Props {
title: string;
description: string;
href: string;
cd?: string;
}
const { title, description, href } = Astro.props;
const { title, description, href, cd = "cd ~/projects/" } = Astro.props;
---
<div class="flex-column">
@@ -20,6 +21,6 @@ const { title, description, href } = Astro.props;
</span>
</TerminalBorder>
<TerminalBorder header="Shell">
<Link href={href}>cd ~/projects/{title}</Link>
<Link href={href}>{cd}{title}</Link>
</TerminalBorder>
</div>

View File

@@ -13,17 +13,17 @@ import Project from "../components/Project.astro";
href="https://github.com/KapiMC/Kapi"
>
A complete "batteries included" framework streamlining the
process of Minecraft plugin development.
Enabling developers to make impressive plugins with ease!
process of Minecraft plugin development. Enabling developers
to make impressive plugins with ease!
</Project>
</div>
<div>
<Project
title="Kapi"
description="Hello"
title="???"
description="???????"
href="https://github.com/KapiMC/Kapi"
>
A bunch of text
????????? ???? ??????? ????? ???????? ??????
</Project>
</div>
<div class="col-span-2 grid grid-cols-[1fr_1fr_1fr] gap-4">
@@ -36,18 +36,19 @@ import Project from "../components/Project.astro";
minimize keystrokes and maximize productivity!
</Project>
<Project
title="Kapi"
description="Hello"
title="???"
description="???????"
href="https://github.com/KapiMC/Kapi"
>
A bunch of text
????????? ???? ??????? ????? ???????? ??????
</Project>
<Project
title="Kapi"
description="Hello"
href="https://github.com/KapiMC/Kapi"
title="Dotfiles"
description="Configuration"
href="https://github.com/Kyren223/dotfiles"
cd="cd ~/"
>
A bunch of text
My linux configuration, includes Neovim, tmux and others.
</Project>
</div>
</div>