Initial commit

This commit is contained in:
2026-01-31 19:51:16 +10:00
commit 836665f1ed
23 changed files with 984 additions and 0 deletions

BIN
src/assets/href.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

1
src/assets/logo.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>

After

Width:  |  Height:  |  Size: 276 B

16
src/assets/main.css Normal file
View File

@@ -0,0 +1,16 @@
@import "tailwindcss";
/* Для темной темы */
@media (prefers-color-scheme: dark) {
body {
background: #111;
/* другие стили для темной темы */
}
}
/* Для светлой темы (по умолчанию или явно) */
@media (prefers-color-scheme: light) {
body {
background: #ccc; /* или любой другой цвет */
}
}