meta: Added current progress
This commit is contained in:
commit
2b2e9029ec
5 changed files with 161 additions and 0 deletions
4
.prettierrc
Normal file
4
.prettierrc
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"tabWidth": 4,
|
||||
"useTabs": true
|
||||
}
|
BIN
src/badges/archlinux.png
Normal file
BIN
src/badges/archlinux.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 837 B |
81
src/index.html
Normal file
81
src/index.html
Normal file
|
@ -0,0 +1,81 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<meta content="yukijoou's web place" property="og:title" />
|
||||
<meta
|
||||
content="i'm yukijoou (ja: 雪女王), and i post things on the internet"
|
||||
property="og:description"
|
||||
/>
|
||||
<meta content="#ADD8E6" data-react-helmet="true" name="theme-color" />
|
||||
|
||||
<title>yukijoou's internet homepage :3</title>
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>yukijoou's homepage</h1>
|
||||
<p class="subtitle">雪女王</p>
|
||||
<p>
|
||||
i like posting silly things on the web! you can find a bunch of
|
||||
it here!
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<h1>about me</h1>
|
||||
<p>
|
||||
i'm an autistic gay trans girl who likes computers. i like old
|
||||
technologies and other stuff that doesn't work properly.
|
||||
<br />
|
||||
i'm the webmistress that runs
|
||||
<a href="https://kemonomimi.gay">kemonomimi.gay</a>, with the
|
||||
help of my amazing friends :3
|
||||
</p>
|
||||
<p>
|
||||
btw, i use
|
||||
<a href="https://archlinux.org">
|
||||
<img src="badges/archlinux.png" alt="archlinux"
|
||||
/></a>
|
||||
on my computers. just thought you should know. (i am not
|
||||
flexing) (it's just for your information)
|
||||
</p>
|
||||
|
||||
<h2>talk to me. i dare u.</h2>
|
||||
<p>
|
||||
i'm available on matrix: @yukijoou:catgirl.cloud
|
||||
<br />
|
||||
more means of communications are comming soon, stay tuned!! (i
|
||||
know you are excited)
|
||||
</p>
|
||||
|
||||
<h1>silly projects</h1>
|
||||
<p>more coming soon here!</p>
|
||||
<p>
|
||||
i'm working on getting more services on
|
||||
<a href="https://kemonomimi.gay">kemonomimi.gay</a>, and
|
||||
bringing some web things i've already done to this website!
|
||||
</p>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2023 - Yuki Joou.
|
||||
<br />
|
||||
This website is best viewed on the Firefox browser with the
|
||||
<a href="https://brailleinstitute.org/freefont">
|
||||
Atkinson Hyperlegible</a
|
||||
>
|
||||
font. I do not care about chromium-based browser compatibility.
|
||||
<br />
|
||||
<em>
|
||||
My content is available under the CC0 license, unless
|
||||
specified otherwise. Please consider crediting me if you use
|
||||
my work.
|
||||
</em>
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
55
src/style.css
Normal file
55
src/style.css
Normal file
|
@ -0,0 +1,55 @@
|
|||
* {
|
||||
font-family: "sans-serif" sans;
|
||||
}
|
||||
|
||||
a {
|
||||
color: purple;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: purple;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: lightblue;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
header {
|
||||
max-width: 30rem;
|
||||
padding: 1rem;
|
||||
margin: 0 0 2rem 0;
|
||||
|
||||
background-color: violet;
|
||||
box-shadow: 5px 5px black;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
color: black;
|
||||
font-weight: 100;
|
||||
margin: 1rem 0 0 0;
|
||||
}
|
||||
|
||||
header .subtitle {
|
||||
margin: 0;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 50rem;
|
||||
padding: 1rem;
|
||||
|
||||
background-color: pink;
|
||||
box-shadow: 5px 5px black;
|
||||
}
|
||||
|
||||
footer {
|
||||
max-width: 30rem;
|
||||
margin-top: 2rem;
|
||||
|
||||
text-align: justify;
|
||||
}
|
21
update.sh
Executable file
21
update.sh
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
# A script for updating the website
|
||||
# Made by sugary :3
|
||||
# Adapted by yukijoou
|
||||
|
||||
set -e
|
||||
|
||||
WEBSITE_NAME="yukijoou.kemonomimi.gay"
|
||||
WEBSITES_PATH="$HOME/www"
|
||||
|
||||
BACKUP_DIR=$(mktemp -d)
|
||||
|
||||
cp -rf "$WEBSITES_PATH" $BACKUP_DIR/$WEBSITE_NAME.bak
|
||||
echo "Made backup at $BACKUP_DIR"
|
||||
|
||||
rm -rf "$WEBSITES_PATH"
|
||||
mkdir -p "$WEBSITES_PATH"
|
||||
cp -rf src/* "$WEBSITES_PATH"
|
||||
|
||||
echo "Installed $WEBSITE_NAME at $WEBSITES_PATH"
|
Loading…
Reference in a new issue