feat: add some images to invoice
All checks were successful
Deploy to SFTP Server / build (push) Successful in 25m31s

This commit is contained in:
2024-04-08 01:52:04 +02:00
parent 146c8d5279
commit e41ef2fceb
10 changed files with 72 additions and 41 deletions

View File

@@ -5,20 +5,25 @@ draft: false
cover: ./images/main.png
icon: "/projects/isyncrasy/favicon.ico"
description: "A small fun virtual OS build with svelte"
links: [["live", "https://isyncrasy.com"]]
tags: ["svelte", "web", "os"]
---
# Isyncrasy
Isyncrasy ist ein kleines virtuelles Betriebssystem, das mit Svelte erstellt wurde. Es ist ein kleines Projekt, das ich gemacht habe, um Svelte zu lernen. Es ist ein einfaches Betriebssystem, das eine E-Mail-Anwendung und eine Terminalanwendung enthält. Es ist ein einfaches Projekt, aber es war sehr lehrreich.
import Image from "@components/Image.astro"
import Main from "./images/main.png"
import Mail from "./images/mail.png"
import Terminal from "./images/terminal.png"
import ImageGallery from "@components/ImageGallery.svelte"
import ImageSlider from "@components/ImageSlider.svelte"
<ImageGallery client:load/>
<Image src={Main} alt="Isyncrasy" />
<Image src={Mail} alt="Isyncrasy" />
<Image src={Terminal} alt="Isyncrasy" />
<ImageSlider title="Design" client:load>
<Image src={Main} alt="Desktop Overview" />
<Image src={Mail} alt="Mail Application" />
<Image src={Terminal} alt="Terminal Application" />
</ImageSlider>