mirror of
https://github.com/Kyren223/website.git
synced 2026-01-10 15:04:41 +00:00
Added dotfiles to projects
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user