aboutsummaryrefslogtreecommitdiff
path: root/app/views/index.view.php
blob: 29f17b4d6f8e366210c45fdb0a42b2e3f1ba5622 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php require __DIR__ . '/partials/header.php'; ?>

    <h1 class="text-3xl mb-1 text-red-700 font-bold">Let's bring a story to life</h1>

    <h2 class="text-xl font-normal text-gray-800 mb-6 leading-normal">
        Strong voice for narration, trailers, storytelling,  and more.
    </h2>

    <h1 class="text-xl text-gray-800 mb-2 font-bold">Prologue</h1>

    <p class="text-gray-darkest mb-3 leading-normal">
        Focused introductory elements for literary, dramatic, and musical arts.
    </p>

    <noscript>
        <audio controls>
            <source src="audio/prologue.mp3" type="audio/mp3">
            Your browser does not support the audio element.
        </audio>
    </noscript>


<?php
$audio = 'prologue';
require __DIR__ . '/components/AudioPlayer.php';
?>


    <h1 class="text-xl text-gray-800 mb-2 font-bold">Narrative</h1>

    <p class="text-gray-darkest mb-3 leading-normal">
        Spoken or written accounts of connected events.
    </p>

    <noscript>
        <audio controls>
            <source src="audio/narrative.mp3" type="audio/mp3">
            Your browser does not support the audio element.
        </audio>
    </noscript>


<?php
$audio = 'narrative';
require __DIR__ . '/components/AudioPlayer.php';
?>


    <h1 class="text-xl text-gray-800 mb-2 font-bold">Dramatic</h1>

    <p class="text-gray-darkest mb-3 leading-normal">
        Sudden and striking narrative elements.
    </p>

    <noscript>
        <audio controls>
            <source src="audio/dramatic.mp3" type="audio/mp3">
            Your browser does not support the audio element.
        </audio>
    </noscript>


<?php
$audio = 'dramatic';
require __DIR__ . '/components/AudioPlayer.php';
?>


    <h1 class="text-xl text-gray-800 mb-2 font-bold">Commercial</h1>

    <p class="text-gray-darkest mb-3 leading-normal">
        Old school narrative commercial style.
    </p>

    <noscript>
        <audio controls>
            <source src="audio/commercial.mp3" type="audio/mp3">
            Your browser does not support the audio element.
        </audio>
    </noscript>


<?php
$audio = 'commercial';
require __DIR__ . '/components/AudioPlayer.php';
?>


<?php require __DIR__ . '/partials/footer.php'; ?>