added more projects and brought back the current projects section of the index
This commit is contained in:
parent
debe015932
commit
b5ae86ade4
5 changed files with 70 additions and 16 deletions
|
|
@ -106,6 +106,11 @@ const props = defineProps<{
|
||||||
border-color: white;
|
border-color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1000px){
|
||||||
|
.card:hover, .content:hover{
|
||||||
.content{
|
.content{
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
@ -113,6 +118,7 @@ const props = defineProps<{
|
||||||
.project-image{
|
.project-image{
|
||||||
filter: brightness(40%) blur(2px);
|
filter: brightness(40%) blur(2px);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -75,22 +75,43 @@ var { data } = await useAsyncData('home', () => queryContent('blog').where({hidd
|
||||||
<img class="" src="https://skillicons.dev/icons?i=git,androidstudio,arduino,bash,blender,cs,cloudflare,css,fediverse,github,godot,html,idea,js,linux,lua,md,netlify,nextjs,nodejs,npm,nuxtjs,obsidian,php,postgres,py,react,sass,supabase,ts,unity,unreal,vercel,vscode,vue,processing&perline=12" /> -->
|
<img class="" src="https://skillicons.dev/icons?i=git,androidstudio,arduino,bash,blender,cs,cloudflare,css,fediverse,github,godot,html,idea,js,linux,lua,md,netlify,nextjs,nodejs,npm,nuxtjs,obsidian,php,postgres,py,react,sass,supabase,ts,unity,unreal,vercel,vscode,vue,processing&perline=12" /> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <hr/> -->
|
<hr/>
|
||||||
<!-- <h1>Latest Project</h1>
|
<h1>Current Projects</h1>
|
||||||
<div class="featured-container">
|
<div class="featured-container">
|
||||||
<ProjectCard
|
<ProjectCardV2
|
||||||
class="fix-size-pls"
|
src=" img\shine.png"
|
||||||
src="https://upload.wikimedia.org/wikipedia/en/f/f2/Pikmin_Bloom_App_icon.png"
|
title="ShineRunnersTest"
|
||||||
href="https://bsky.app/profile/tabbycat.dev"
|
description="TwitchPlays game based on Shine Runners from Mariokart DS"
|
||||||
heading="Pikmin Bloom Stats"
|
long-description=
|
||||||
description="Figuring out how the game works"
|
"Inspired by the very retro horse racing game thing thats been big on Twitter recently, this 'game' is played by watching the stream and sending commands in chat. In this case, the only user interaction is they can choose to bet fake money on a character hoping that they will win but i hope for forture projects I can make something with more actual game interation"
|
||||||
|
:buttons='[
|
||||||
|
{ link: "https://www.twitch.tv/tabbycatnya", text: "Visit Twitch Channel" }
|
||||||
|
]'
|
||||||
/>
|
/>
|
||||||
<div class="featured-text">
|
|
||||||
|
<ProjectCardV2
|
||||||
|
src="https://img.itch.zone/aW1nLzE3MzE3NDAzLnBuZw==/315x250%23c/pxmt%2BB.png"
|
||||||
|
title="ChronoChamber"
|
||||||
|
description="Complete the level before time catches up to you"
|
||||||
|
long-description=
|
||||||
|
"Short experimental puzzle game where you have to plan your moves before starting each level.
|
||||||
|
|
||||||
|
'The Chronos Terminal is a powerful device that executes command blocks based into it as soon as you unseal the chamber. Use it to your advantage to escape the time loop you've been caught in!'
|
||||||
|
|
||||||
|
Winner of the Playmakers August Game Jam!
|
||||||
|
|
||||||
|
I'll also be showcasing this at the Playmakers booth at Smash anime convention 2025 in Sydney!"
|
||||||
|
:buttons='[
|
||||||
|
{ link: "https://tabby-cat-nya.itch.io/chronochamber", text: "Play on Itch.io" },
|
||||||
|
{ link: "/chrono-chamber", text: "Landing page for Smash" }
|
||||||
|
]'
|
||||||
|
/>
|
||||||
|
<!-- <div class="featured-text">
|
||||||
<p>Pikmin Bloom is one of the funny little geospatial games that Niantic made with Nintendo</p>
|
<p>Pikmin Bloom is one of the funny little geospatial games that Niantic made with Nintendo</p>
|
||||||
<p>I'm trying to figure out how many of the games mechanics work in relation to event rewards and what the best way to manage pikmin and mushrooms are especially early each month</p>
|
<p>I'm trying to figure out how many of the games mechanics work in relation to event rewards and what the best way to manage pikmin and mushrooms are especially early each month</p>
|
||||||
<p>Follow updates and findings on my <a href="https://bsky.app/profile/tabbycat.dev">Bluesky</a>!</p>
|
<p>Follow updates and findings on my <a href="https://bsky.app/profile/tabbycat.dev">Bluesky</a>!</p>
|
||||||
</div>
|
</div> -->
|
||||||
</div> -->
|
</div>
|
||||||
<!-- seperator -->
|
<!-- seperator -->
|
||||||
<hr/>
|
<hr/>
|
||||||
<!-- featured projects, link to all? -->
|
<!-- featured projects, link to all? -->
|
||||||
|
|
@ -204,6 +225,17 @@ h1{
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.featured-container>div{
|
||||||
|
width:30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1000px){
|
||||||
|
|
||||||
|
.featured-container>div{
|
||||||
|
width:80%;
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
.blog-container{
|
.blog-container{
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
||||||
|
|
@ -61,9 +61,12 @@ It's one of my most extensive works as it entirely a solo project, In addition t
|
||||||
|
|
||||||
'The Chronos Terminal is a powerful device that executes command blocks based into it as soon as you unseal the chamber. Use it to your advantage to escape the time loop you've been caught in!'
|
'The Chronos Terminal is a powerful device that executes command blocks based into it as soon as you unseal the chamber. Use it to your advantage to escape the time loop you've been caught in!'
|
||||||
|
|
||||||
Winner of the Playmakers August Game Jam!"
|
Winner of the Playmakers August Game Jam!
|
||||||
|
|
||||||
|
I'll also be showcasing this at the Playmakers booth at Smash anime convention 2025 in Sydney!"
|
||||||
:buttons='[
|
:buttons='[
|
||||||
{ link: "https://tabby-cat-nya.itch.io/chronochamber", text: "Play on Itch.io" }
|
{ link: "https://tabby-cat-nya.itch.io/chronochamber", text: "Play on Itch.io" },
|
||||||
|
{ link: "/chrono-chamber", text: "Landing page for Smash" }
|
||||||
]'
|
]'
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
@ -119,6 +122,19 @@ My main focus was on the online leaderboard and login system, After the game jam
|
||||||
]'
|
]'
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<ProjectCardV2
|
||||||
|
src=" img\racer.png"
|
||||||
|
title="ThreeJS Racing Game"
|
||||||
|
description="Simple 3D Lane racing game"
|
||||||
|
long-description=
|
||||||
|
"Individual project for Computer Graphics, A simple 3D game where you drive against oncoming traffic to try and get the highest score before crashing
|
||||||
|
|
||||||
|
Press Up or W to start and A/D Left/Right to change lanes, also has settings that can be changed in the top right hand corner"
|
||||||
|
:buttons='[
|
||||||
|
{ link: "https://racer23.netlify.app/", text: "Play" }
|
||||||
|
]'
|
||||||
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
@ -157,13 +173,13 @@ My main focus was on the online leaderboard and login system, After the game jam
|
||||||
|
|
||||||
@media (max-width: 1000px){
|
@media (max-width: 1000px){
|
||||||
.featured-container{
|
.featured-container{
|
||||||
flex-direction: column;
|
/* flex-direction: column;
|
||||||
margin-left: 0%;
|
margin-left: 0%;
|
||||||
margin-right: 0%;
|
margin-right: 0%; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.featured-container>div{
|
.featured-container>div{
|
||||||
width:100%;
|
width:40%;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
public/img/racer.png
Normal file
BIN
public/img/racer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
BIN
public/img/shine.png
Normal file
BIN
public/img/shine.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 577 KiB |
Loading…
Add table
Add a link
Reference in a new issue