-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 2.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- metadata -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- title and favicon -->
<title>Adventure Time | Home</title>
<link rel="icon" type="image/x-icon" href="/assets/cycling.png" />
<!-- js -->
<script
defer
src="https://cdn.jsdelivr.net/npm/@supabase/[email protected]/dist/umd/supabase.min.js"
></script>
<script type="module" src="app.js"></script>
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Oswald&family=Sacramento&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;600&family=Titillium+Web:wght@200;400;600&display=swap"
/>
<!-- css -->
<link rel="stylesheet" href="/styles/reset.css" />
<link rel="stylesheet" href="/styles/global.css" />
<link rel="stylesheet" href="/styles/home-page.css" />
<!-- add link for page specific css -->
</head>
<body>
<header class="page-header">
<img class="logo" src="/assets/Icon_cycling.png" alt="logo" />
<p class="title">Adventure Time</p>
<nav>
<a href="/">Home</a>
<a href="/profile/">Profile</a>
<a href="/about/">About Us</a>
<a id="sign-out-link" href="auth">Sign Out</a>
</nav>
</header>
<main>
<h1>Welcome to your best PDX adventure.</h1>
<h3>Let us handle the plan. You take on the fun!</h3>
<!-- <a class="adventure-link" id="adventure-link" href="/adventure/">Adventure Time</a> -->
<button id="adventure-button" class="adventure-button">
<span>PDX Adventure </span>
</button>
</main>
</body>
</html>