-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.svelte
71 lines (57 loc) · 2.09 KB
/
index.svelte
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
<svelte:head>
<title>Stephen Aldriedge</title>
</svelte:head>
<section class="home fixed-bg" id="home">
<!-- COLOR OVERLAY -->
<div class="color-overlay">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-12">
<!-- INTRO HEADING -->
<h1 class="intro white-text text-center">Stephen Aldriedge</h1>
<!-- CALL TO ACTION -->
<div class="cta smooth-scroll">
<!-- <a [routerLink]="['/portfolio', {outlets: {portfoliopage: ['portfolio-grid']}}]" class="btn btn-default standard-button red-button">Portfolio</a> -->
<!-- <a [routerLink]="['/skills']" class="btn btn-default standard-button green-button">Skills</a> -->
</div>
</div>
</div>
<div class="row text-center">
<!-- 3 FEATURES ON HOMEPAGE -->
<div class="home-features">
<!-- SINGLE FEATURE -->
<div class="col-md-4 col-sm-4">
<div class="single-feature">
<div class="icon yellow-text">
<span class="icon icon-joy"></span>
<!-- ICON -->
</div>
<h6 class="yellow-text uppercase">Game Development</h6>
</div>
</div>
<!-- SINGLE FEATURE -->
<div class="col-md-4 col-sm-4">
<div class="single-feature">
<div class="icon purple-text">
<span class="icon icon-happy-smiley-streamline"></span>
<!-- ICON -->
</div>
<h6 class="purple-text uppercase">Interaction/UX</h6>
</div>
</div>
<!-- SINGLE FEATURE -->
<div class="col-md-4 col-sm-4">
<div class="single-feature">
<div class="icon green-text">
<span class="icon icon-ipad-streamline"></span>
<!-- ICON -->
</div>
<h6 class="green-text uppercase">Software Development</h6>
</div>
</div>
</div>
</div>
<!-- END OF 3 FEATURES -->
</div>
</div>
</section>