the cat zone

This commit is contained in:
b1ek 2023-07-20 20:32:14 +10:00
parent 00cb9c0ab1
commit 6ce8753a38
Signed by: blek
GPG Key ID: 14546221E3595D0C
5 changed files with 56 additions and 31 deletions

BIN
public/assets/coffeepot.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

BIN
public/assets/the_meowo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -5,8 +5,17 @@
margin-top: 100px; margin-top: 100px;
} }
.contributors { .block {
// background: ; margin: 70px 0;
text-align: center;
}
.cat {
padding: 32px 0;
background: url(/assets/kittycatcat.png);
background-size: cover;
text-shadow: 0 2px 2px black;
} }
.lgbt { .lgbt {

View File

@ -1,6 +1,12 @@
<script> <script>
import styles from './app.module.scss'; import styles from './app.module.scss';
console.log(styles)
let meowo_meow = '';
for (let i = 0; i != 50; i++) {
const meows = ['meow', 'mowe', 'mewo', 'mweo', 'nya', 'm:3wo'];
meowo_meow += meows[Math.floor(Math.random() * meows.length)] + ' ';
if (i % 10 === 0 && i != 0) meowo_meow += '<br/>'
}
</script> </script>
<main class={styles.root}> <main class={styles.root}>
@ -15,33 +21,43 @@
<h1>Welcome to the transgirls cafe ^w^</h1> <h1>Welcome to the transgirls cafe ^w^</h1>
<p>This is a small community that is maintained in collective efforts of Germany and Russia (nonputin)</p> <p>This is a small community that is maintained in collective efforts of Germany and Russia (nonputin)</p>
<div class={styles.contributors}> </div>
<h1>Contributors</h1>
<table align="center"> <div class={styles.block}>
<tbody> <h1>Contributors</h1>
<tr> <table align="center">
<td> <tbody>
<img src='/assets/lesbiab.gif' alt='lesbian uwu cat spinning' width='160px'> <tr>
</td> <td>
<td> <img src='/assets/lesbiab.gif' alt='lesbian uwu cat spinning' width='160px'>
<img src='/assets/iz.png' alt='izzie :3' width='160px'> </td>
</td> <td>
</tr> <img src='/assets/iz.png' alt='izzie :3' width='160px'>
<tr> </td>
<td> </tr>
<h4> <tr>
Alice (uwu) <td>
<a href='https://blek.codes'>site</a> <h4>
</h4> Alice (uwu)
web desing :3 <a href='https://blek.codes'>site</a>
</td> </h4>
<td> web desing :3
<h4>Izzie</h4> </td>
host mommy <td>
</td> <h4>Izzie</h4>
</tr> host mommy
</tbody> </td>
</table> </tr>
</div> </tbody>
</table>
</div>
<div class={styles.block + ' ' + styles.cat}>
<h1>meow mewoweu :3</h1>
<p>this is a cat cat kitty cat zone :3</p>
<img src='/assets/the_meowo.png' alt='meowo the greatnes :3' width="600px">
<h1>Meowo "The greatness"</h1>
<p>Worship the great Meowo</p>
<p>{@html meowo_meow}</p>
</div> </div>
</main> </main>