various changes
This commit is contained in:
parent
8495215748
commit
733a6d46c4
5 changed files with 75 additions and 53 deletions
|
|
@ -83,46 +83,22 @@ var { data } = await useAsyncData('home', () => queryContent('blog').where({hidd
|
|||
<hr/>
|
||||
<h1>Current Projects</h1>
|
||||
<div class="featured-container">
|
||||
|
||||
<ProjectCardV2
|
||||
src="img\projects\tinyweb.png"
|
||||
title="Server Charms"
|
||||
description="Making a little tiny webserver out of an ESP32"
|
||||
long-description=
|
||||
"armed with a processor, wifi antenna and a total of 4mb of flash storage I'm running a tiny web server off an ESP32, so small I plan to carry it around with me while it broadcasts an open wifi hotspot, anyone who joins will be sent to the tiny website through a captive portal"
|
||||
:buttons='[
|
||||
// {link:"https://tabby-cat-nya.itch.io/rust-hacker",text:"Play Game"},
|
||||
// {link:"https://github.com/tabby-cat-nya/RustHacker",text:"Project Github"},
|
||||
|
||||
]'
|
||||
:badges='["esp32"]'
|
||||
/>
|
||||
|
||||
<ProjectCardV2
|
||||
src="https://img.itch.zone/aW1nLzI1MDU1OTEyLnBuZw==/315x250%23c/6xbLLl.png"
|
||||
title="Rust Hacker"
|
||||
description="Scavenge parts from the ewaste bin to build your botnet"
|
||||
long-description=
|
||||
""
|
||||
:buttons='[
|
||||
{link:"https://tabby-cat-nya.itch.io/rust-hacker",text:"Play Game"},
|
||||
{link:"https://github.com/tabby-cat-nya/RustHacker",text:"Project Github"},
|
||||
|
||||
]'
|
||||
:badges='["godot4", "gamejam"]'
|
||||
/>
|
||||
|
||||
<ProjectCardV2
|
||||
src="img\projects\pounce.png"
|
||||
title="Pounce"
|
||||
description="Discord bot to catch scammers"
|
||||
long-description=
|
||||
"After getting very frustrated with having to deal with the numerous discord scam bots claiming to be giving away 'free' macbooks and cameras, I made a bot to catch them and allow moderators to get rid of them before any normal user has a chance to see and potencially fall for their scams in the first place!"
|
||||
:buttons='[
|
||||
{link:"https://discord.gg/G3xjsQnBXV",text:"Pounce discord server - for testing and help"},
|
||||
<ProjectCardV2
|
||||
src="img/projects/sleepyclock.png"
|
||||
title="SleepyClock"
|
||||
description="Little desktop gadget that tells you when you need to go to sleep!"
|
||||
long-description=
|
||||
"This little gadget sits on the edge of your screen and counts down the amount of time left until you should be heading to bed! Very high configurability and also has a variety of handy timers!"
|
||||
:buttons='[
|
||||
{ link: "https://forge.tabbycat.dev/tabby/SleepyClock", text: "View Repository" },
|
||||
{ link: "https://tabby-cat-nya.itch.io/sleepyclock", text:"Download on Itch.io"}
|
||||
]'
|
||||
:badges='["godot4"]'
|
||||
/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -140,6 +116,19 @@ var { data } = await useAsyncData('home', () => queryContent('blog').where({hidd
|
|||
<!-- featured projects, link to all? -->
|
||||
<h1>Featured Projects</h1>
|
||||
<div class="featured-container">
|
||||
|
||||
<ProjectCardV2
|
||||
src="img\projects\pounce.png"
|
||||
title="Pounce"
|
||||
description="Discord bot to catch scammers"
|
||||
long-description=
|
||||
"After getting very frustrated with having to deal with the numerous discord scam bots claiming to be giving away 'free' macbooks and cameras, I made a bot to catch them and allow moderators to get rid of them before any normal user has a chance to see and potencially fall for their scams in the first place!"
|
||||
:buttons='[
|
||||
{link:"https://discord.gg/G3xjsQnBXV",text:"Pounce discord server - for testing and help"},
|
||||
]'
|
||||
:badges='["godot4"]'
|
||||
/>
|
||||
|
||||
<ProjectCardV2
|
||||
src="https://img.itch.zone/aW1nLzE2Mjg0ODg2LnBuZw==/315x250%23c/6FRKz0.png"
|
||||
title="Arcane Raiders"
|
||||
|
|
@ -162,20 +151,7 @@ On the 19th of February the game was released and since then we have had over 42
|
|||
:badges='[ "godot4", "steam"]'
|
||||
/>
|
||||
|
||||
<ProjectCardV2
|
||||
src="https://img.itch.zone/aW1nLzE2NTkxMzEyLnBuZw==/315x250%23c/0Y7BUi.png"
|
||||
href="https://clevertop.itch.io/kitten-calamity"
|
||||
title="Kitten Calamity"
|
||||
description="Cute little game made in about 29 hours for the UTS Tech Fest game jam! Grab a friend and find out who can be the most destructive little kitten in one minute :3"
|
||||
long-description=
|
||||
"This little project was made with a team of 3 for the UTS Tech Fest Game Jam. Using Godot, my main focus was on the player controls, the overall game logic and the user interface.
|
||||
|
||||
At the end of the game jam our game received the Most Intuitive Game award."
|
||||
:buttons='[
|
||||
{ link: "https://clevertop.itch.io/kitten-calamity", text: "Play on Itch.io" }
|
||||
]'
|
||||
:badges='["godot4","gamejam"]'
|
||||
/>
|
||||
|
||||
|
||||
<ProjectCardV2
|
||||
src="https://img.itch.zone/aW1nLzU3NzU5NTEucG5n/315x250%23c/eQja%2FA.png"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,49 @@
|
|||
<h1 class="no-margin">My Projects</h1>
|
||||
<hr>
|
||||
<div class="featured-container">
|
||||
|
||||
<ProjectCardV2
|
||||
src="img\projects\tinyweb.png"
|
||||
title="Server Charms"
|
||||
description="Making a little tiny webserver out of an ESP32"
|
||||
long-description=
|
||||
"armed with a processor, wifi antenna and a total of 4mb of flash storage I'm running a tiny web server off an ESP32, so small I plan to carry it around with me while it broadcasts an open wifi hotspot, anyone who joins will be sent to the tiny website through a captive portal"
|
||||
:buttons='[
|
||||
// {link:"https://tabby-cat-nya.itch.io/rust-hacker",text:"Play Game"},
|
||||
// {link:"https://github.com/tabby-cat-nya/RustHacker",text:"Project Github"},
|
||||
|
||||
]'
|
||||
:badges='["esp32"]'
|
||||
/>
|
||||
|
||||
<ProjectCardV2
|
||||
src="https://img.itch.zone/aW1nLzI1MDU1OTEyLnBuZw==/315x250%23c/6xbLLl.png"
|
||||
title="Rust Hacker"
|
||||
description="Scavenge parts from the ewaste bin to build your botnet"
|
||||
long-description=
|
||||
""
|
||||
:buttons='[
|
||||
{link:"https://tabby-cat-nya.itch.io/rust-hacker",text:"Play Game"},
|
||||
{link:"https://github.com/tabby-cat-nya/RustHacker",text:"Project Github"},
|
||||
|
||||
]'
|
||||
:badges='["godot4", "gamejam"]'
|
||||
/>
|
||||
<ProjectCardV2
|
||||
src="https://img.itch.zone/aW1nLzE2NTkxMzEyLnBuZw==/315x250%23c/0Y7BUi.png"
|
||||
href="https://clevertop.itch.io/kitten-calamity"
|
||||
title="Kitten Calamity"
|
||||
description="Cute little game made in about 29 hours for the UTS Tech Fest game jam! Grab a friend and find out who can be the most destructive little kitten in one minute :3"
|
||||
long-description=
|
||||
"This little project was made with a team of 3 for the UTS Tech Fest Game Jam. Using Godot, my main focus was on the player controls, the overall game logic and the user interface.
|
||||
|
||||
At the end of the game jam our game received the Most Intuitive Game award."
|
||||
:buttons='[
|
||||
{ link: "https://clevertop.itch.io/kitten-calamity", text: "Play on Itch.io" }
|
||||
]'
|
||||
:badges='["godot4","gamejam"]'
|
||||
/>
|
||||
|
||||
<ProjectCardV2
|
||||
src="img\projects\lunar.png"
|
||||
title="Super Lunar (Working Title)"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue