Remove sleepy care from projects
All checks were successful
Deploy / build-and-publish (push) Successful in 4m19s
Deploy / deploy (push) Successful in 19s

This commit is contained in:
2025-04-20 21:08:15 +03:00
parent 396f943b38
commit 4449c5a511
5 changed files with 2 additions and 21 deletions

View File

@@ -52,7 +52,7 @@ jobs:
run: | run: |
ssh_command=" ssh_command="
cd /home/${REMOTE_USER}/${IMAGE_NAME} cd /home/${REMOTE_USER}/${IMAGE_NAME}
docker compose down docker compose pull
docker compose up -d docker compose restart
" "
ssh -o StrictHostKeyChecking=no ${REMOTE_USER}@${REMOTE_HOST} "$ssh_command" ssh -o StrictHostKeyChecking=no ${REMOTE_USER}@${REMOTE_HOST} "$ssh_command"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 657 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 441 KiB

View File

@@ -15,9 +15,6 @@ import GamesImg2 from "$lib/assets/projects/games/2.png";
import GamesImg3 from "$lib/assets/projects/games/3.png"; import GamesImg3 from "$lib/assets/projects/games/3.png";
import MusanthropeImg1 from "$lib/assets/projects/musanthrope/1.png"; import MusanthropeImg1 from "$lib/assets/projects/musanthrope/1.png";
import MusanthropeImg2 from "$lib/assets/projects/musanthrope/2.png"; import MusanthropeImg2 from "$lib/assets/projects/musanthrope/2.png";
import SleepyCareImg1 from "$lib/assets/projects/sleepy_care/1.png";
import SleepyCareImg2 from "$lib/assets/projects/sleepy_care/2.png";
import SleepyCareImg3 from "$lib/assets/projects/sleepy_care/3.png";
import VkAdultImg1 from "$lib/assets/projects/vk_adult/1.png"; import VkAdultImg1 from "$lib/assets/projects/vk_adult/1.png";
export type TProject = { export type TProject = {
@@ -136,21 +133,5 @@ export const projects = [
icon: MaterialSymbolsGlobe icon: MaterialSymbolsGlobe
} }
] ]
},
{
nameSlug: 'projects.sleepy_care.name',
descriptionSlug: 'projects.sleepy_care.description',
images: [
SleepyCareImg1,
SleepyCareImg2,
SleepyCareImg3
],
links: [
{
href: 'https://sleepy.care',
textSlug: 'projects.link_types.website',
icon: MaterialSymbolsGlobe
}
]
} }
] as TProject[] ] as TProject[]