Initial commit

This commit is contained in:
2024-01-02 12:32:17 +01:00
commit 39065a5bac
18 changed files with 3132 additions and 0 deletions

8
src/main.ts Normal file
View File

@@ -0,0 +1,8 @@
import Reveal from 'reveal.js';
let deck = new Reveal({
transition: 'fade',
margin: 0.0
});
deck.initialize();

40
src/slides.html Normal file
View File

@@ -0,0 +1,40 @@
<section class="sc-left-and-right" data-background-image="/backgrounds/title.svg">
<div class="sc-right">
<img src="/logo_scandio.svg" style="width: 50%;">
<h2>Scandio und Reveal.js</h2>
<div class="sc-gray">02.01.2024</div>
</div>
</section>
<section class="sc-left-and-right" data-background-image="/backgrounds/left-and-right.svg">
<div class="sc-left">
<h2>Inhalt</h2>
</div>
<div class="sc-right sc-white">
<ul>
<li>Über Scandio</li>
<li>Mehr Inhalt</li>
<li>Danke</li>
</ul>
</div>
</section>
<section data-background-color="black">
Über Scandio
</section>
<section data-background-image="/backgrounds/normal.svg" data-background-position="top right">
<h3>Wir digitalisieren Produkte, Prozesse und Organisationen</h3>
<div>Durch agile Teams, zugeschnitten auf die Ansprüche ihres Projekts, verhelfen wir kleinen und großen Unternehmen zu mehr
Kompetenz in der digitalen Welt.</div>
</section>
<section class="sc-left-and-right" data-background-color="black">
<div class="sc-left">
<img src="/thankyou.png" style="height: 70%">
</div>
<div class="sc-right">
<div>Thank you</div>
</div>
</section>

1
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="vite/client" />