This commit is contained in:
Lah Shrimp 2026-03-04 19:33:34 -07:00
parent dfcab34491
commit d003913ce7
2 changed files with 17 additions and 12 deletions

View File

@ -1,15 +1,15 @@
export const projects = { export const projects = {
"biotama":{ "biotama":{
content: content:
`Biotama is a game where players attempt to convert wastelands into thriving ecosystems.<br/> `<p><span class="bold">Biotama</span> is a game where players attempt to convert wastelands into thriving ecosystems.</p>
The player starts with a "Mother Tree" <p>The player starts with a "Mother Tree"
which acts as the core component of the player's ecosystem. which acts as the core component of the player's ecosystem.
Trees grow roots that can connect together, Trees grow roots that can connect together,
allowing them to communicate and send resources between each other. allowing them to communicate and send resources between each other.
Mycelial networks function similarly for fungi. <br/> Mycelial networks function similarly for fungi. </p>
Biotama aims to be educational as well as fun. <p>Biotama aims to be educational as well as fun.
It will feature real-world species with tooltips showing fun facts about those species. It will feature real-world species with tooltips showing fun facts about those species.
We are consulting with experts in biology where necessary to ensure accuracy to the real world. We are consulting with experts in biology where necessary to ensure accuracy to the real world.</p>
`, `,
images: { images: {
left: {src:"biotama2.png",alt:"mother tree with a river and cliffs in the background"}, left: {src:"biotama2.png",alt:"mother tree with a river and cliffs in the background"},
@ -18,11 +18,11 @@ export const projects = {
}, },
}, },
"htp":{ "htp":{
content: `A game by Shrimp Squad Studios made for the Epic MegaJam! content: `<p>A game by Shrimp Squad Studios made for the Epic MegaJam!</p>
One week to make a game and this is what we made! A game based on the movie Hackers.<br/> <p>One week to make a game and this is what we made! A game based on the movie Hackers.</p>
Your goal is to hack the Gibson computer and collect the garbage file. <p>Your goal is to hack the Gibson computer and collect the garbage file.
Which will then in turn let you HACK THE PLANET! <br/> Which will then in turn let you <span class="bold">HACK THE PLANET!</span> </p>
<a href='https://megsum.itch.io/hack-the-planet'> Try it out!</a>`, <a class='htp-cta' href='https://megsum.itch.io/hack-the-planet'> Try it out!</a>`,
images: { images: {
left: {src:"htp1.png",alt:"visual puzzle with different colours"}, left: {src:"htp1.png",alt:"visual puzzle with different colours"},
right: {src:"htp2.png",alt:"the player character standing surrounded by various text characters"}, right: {src:"htp2.png",alt:"the player character standing surrounded by various text characters"},

View File

@ -68,9 +68,10 @@ body {
display: flex; display: flex;
gap: 20px; gap: 20px;
justify-content: space-evenly; justify-content: space-evenly;
border-image: url("./assets/waves-border.png") 27 fill / 15px / 15px 0 0 0 round; border-image: url("./assets/waves-border.png") 27 fill / 35px / 25px 0 0 0 round;
position:relative; position:relative;
color: var(--tangerine-dream-shrimp); color: var(--tangerine-dream-shrimp);
font-size: 24px;
} }
#shrimp-project-content { #shrimp-project-content {
@ -123,4 +124,8 @@ body {
#shrimp-project-content .smol-image{ #shrimp-project-content .smol-image{
width: 100%; width: 100%;
} }
} }
.bold {
font-weight: bold;
}