mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 00:43:42 +02:00
29 lines
No EOL
1,008 B
PHP
29 lines
No EOL
1,008 B
PHP
<style><?= VV::css("public/assets/css/pages/index.css") ?></style>
|
|
<section id="intro">
|
|
<container class="split">
|
|
<div>
|
|
<h2>Vegvisir</h2>
|
|
<h1>A PHP and JavaScript Web Framework</h1>
|
|
<p>that handles navigation and routing, and nothing else</p>
|
|
</div>
|
|
</container>
|
|
</section>
|
|
<section class="waves">
|
|
<div class="wave"></div>
|
|
<container class="split">
|
|
<div> </div>
|
|
<img src="assets/media/waves/shiponastick.svg">
|
|
</container>
|
|
<div class="wave"></div>
|
|
</section>
|
|
<section id="byoe">
|
|
<container class="split">
|
|
<?= VV::embed("public/assets/media/byoe.svg") ?>
|
|
<div>
|
|
<h1>TypeScript, Bootstrap, something else?</h1>
|
|
<p>No problem, Vegvisir's ethos is to not lock you down a specific paradigm. That is why Vegvisir will try to interfere as little as possible with how and with what you build your website by being as simple as possible.</p>
|
|
<h2>Bring-Your-Own-Experience</h2>
|
|
</div>
|
|
</container>
|
|
</section>
|
|
<script><?= VV::js("public/assets/js/pages/index.js") ?></script>
|