wishthis/includes/pages/home.php
2022-01-14 08:41:53 +01:00

33 lines
695 B
PHP

<?php
/**
* home.php
*
* @author Jay Trees <github.jay@grandel.anonaddy.me>
*/
use wishthis\Page;
$page = new page(__FILE__, 'Home');
$page->header();
$page->navigation();
?>
<main>
<div class="ui container">
<div class="ui segment">
<h1 class="ui header">Welcome to wishthis</h1>
<p>
wishthis is a simple, intuitive and modern plattform to create,
manage and view your wishes for any kind of occasion.
</p>
<p>
Go ahead and get started now and <a href="/?page=wishlist-create">create a wishlist</a>!
</p>
</div>
</div>
</main>
<?php
$page->footer();
?>