init repo

This commit is contained in:
b1ek 2023-07-20 20:05:51 +10:00
commit 887c3c4b45
Signed by: blek
GPG Key ID: 14546221E3595D0C
11 changed files with 2209 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
node_modules
.DS_Store
*.log
dist
# yarn only
package-lock.json
pnpm-lock.yaml

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# transgirl.cafe
homepage for [transgirl.cafe](https://transgirl.cafe)
# Building
`yarn build`
# Development
`yarn dev`

17
index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body, html {
margin: 0; padding: 0;
background: #2a2a2a;
color: #f2f2f2;
}
</style>
</head>
<body>
<script type="module" src="/src/main.js"></script>
</body>
</html>

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "transgirl.cafe",
"version": "1.0.0",
"description": "Homepage for transgirl.cafe",
"main": "index.js",
"repository": "https://git.blek.codes/blek/transgirl.cafe",
"author": "b1ek <me@blek.codes>",
"license": "MIT",
"type": "module",
"private": false,
"devDependencies": {
"@linaria/vite": "^4.5.2",
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"sass": "^1.64.0",
"scss": "^0.2.4",
"svelte": "^4.1.0",
"vite": "^4.4.4"
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"@linaria/core": "^4.5.2"
}
}

BIN
public/assets/iz.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

BIN
public/assets/lesbiab.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

38
src/app.module.scss Normal file
View File

@ -0,0 +1,38 @@
.root {
.intro {
text-align: center;
margin-top: 100px;
}
.contributors {
// background: ;
}
.lgbt {
text-align: center;
.progress, .trans {
width: 300px;
height: 150px;
display: inline-block;
margin-right: 16px;
}
.progress {
background:
conic-gradient(at 14% 50%, #0000 221.25deg, white 222deg 318deg, #0000 318.25deg),
conic-gradient(at 23% 50%, #0000 221.25deg, #ffa6b9 222deg 318deg, #0000 318.25deg),
conic-gradient(at 32% 50%, #0000 221.25deg, #00d2ff 222deg 318deg, #0000 318.25deg),
conic-gradient(at 41% 50%, #0000 221.25deg, #753000 222deg 318deg, #0000 318.25deg),
conic-gradient(at 50% 50%, #0000 221.25deg, black 222deg 318deg, #0000 318.25deg),
linear-gradient(red 0 16.66%, orange 0 33.33%, yellow 0 50%, green 0 66.66%, blue 0 83.33%, indigo 0);
}
.trans {
background: linear-gradient(#00d2ff 20%, #ffa6b9 0 40%, white 0 60%, #ffa6b9 0 80%, #00d2ff 0);
}
}
// h1 {
// text-align: center;
// margin-top: 100px;
// }
}

44
src/app.svelte Normal file
View File

@ -0,0 +1,44 @@
<script>
import styles from './app.module.scss';
console.log(styles)
</script>
<main class={styles.root}>
<div class={styles.intro}>
<div class={styles.lgbt}>
<div class={styles.progress}></div>
<div class={styles.trans}></div>
</div>
<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>
<div class={styles.contributors}>
<h1>Contributors</h1>
<table align="center">
<tbody>
<tr>
<td>
<img src='/assets/lesbiab.gif' alt='lesbian uwu cat spinning' width='160px'>
</td>
<td>
<img src='/assets/iz.png' alt='izzie :3' width='160px'>
</td>
</tr>
<tr>
<td>
<h4>
Alice (uwu)
<a href='https://blek.codes'>site</a>
</h4>
web desing :3
</td>
<td>
<h4>Izzie</h4>
host mommy
</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>

9
src/main.js Normal file
View File

@ -0,0 +1,9 @@
import App from './app.svelte';
const el = document.createElement('div');
const app = new App({
target: el
})
document.body.appendChild(el)

12
vite.config.js Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import linaria from '@linaria/vite';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
build: {
sourcemap: false,
minify: true
}
})

2047
yarn.lock Normal file

File diff suppressed because it is too large Load Diff