summaryrefslogtreecommitdiff
path: root/public/index.php
blob: 1e3c04b6ebd2411c8307e1566be4f2023cfe45f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/../lib/partials.php';
?>
<html>

<head>
    <title>The Tinybot Project</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <link rel="stylesheet" href="/static/style.css">
    <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon">
</head>

<body>
    <main>
        <?php html_navigation_bar() ?>

        <content>
            <!-- PROMO -->
            <section class="row justify-between align-center background-colorful border" style="border-radius:4px">
                <div class="row justify-center align-center img-gradient">
                    <img src="/static/img/brand/profile_picture.png" alt=""
                        style="border-top-left-radius:4px;border-bottom-left-radius:4px;">
                </div>
                <div class="column justify-end gap-8 p-16">
                    <h1 class="self-end text-right">Enhance your chat with the bot</h1>
                    <p class="self-end text-right">
                        A multi-utility Twitch chat bot that brings<br>
                        a lot of functionality into your chat.
                    </p>
                    <a href="#" class="self-end">
                        <button>Get the bot</button>
                    </a>
                </div>
            </section>
        </content>
    </main>

    <?php html_big_footer() ?>
</body>

</html>