-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (76 loc) · 4.17 KB
/
Copy pathindex.html
File metadata and controls
79 lines (76 loc) · 4.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Template by One Thirteen</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/svg+xml" href="/img/favicon/favicon.svg">
<link rel="icon" type="image/x-icon" href="/img/favicon/favicon.ico">
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon/favicon-96x96.png">
<link rel="manifest" href="/img/favicon/site.webmanifest">
<meta name="theme-color" content="#6680d8">
<!-- 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=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="src/styles/index.css">
<script src="/src/scripts/loadComponents.js"></script>
</head>
<body>
<div class="container">
<div class="nav-placeholder"></div>
<div class="main-content">
<section class="hero">
<h1 class="company-name">Your headline here</h1>
<p class="company-tagline">Add your company/product tagline here</p>
<div class="apps-grid">
<div class="app-card">
<h2 class="app-title">Good/Service/Feature 1</h2>
<p class="app-description">Describe your good/service/feature here.</p>
<a href="features/feature-1" class="app-link">Learn more</a>
</div>
<div class="app-card">
<h2 class="app-title">Good/Service/Feature 2</h2>
<p class="app-description">Describe your good/service/feature here.</p>
<a href="features/feature-2" class="app-link">Learn more</a>
</div>
<div class="app-card">
<h2 class="app-title">Good/Service/Feature 3</h2>
<p class="app-description">Describe your good/service/feature here.</p>
<a href="features/feature-3" class="app-link">Learn more</a>
</div>
</div>
<div class="apps-grid" style="margin-top: 2rem;">
<div class="app-card" style="width: 100%; text-align: left;">
<h2 class="app-title">Good/Service/Feature 4</h2>
<p class="app-description">Describe your good/service/feature here. On our site, we use this to link to our YouTube channel, but you can use it for anything.</p>
<a href="#" class="app-link">Learn more</a>
</div>
<div class="app-card" style="width: 100%; text-align: left; background: rgba(46, 164, 79, 0.05); border-color: #2EA44F;">
<h2 class="app-title">Other Open Source Projects</h2>
<p class="app-description">We have other open source projects that you may find useful.</p>
<a href="/open-source" class="view-all-link">
<i class="fas fa-code-branch"></i>
Learn more
</a>
</div>
</div>
</section>
</div>
<div class="cookie-banner" id="cookieBanner">
<div class="cookie-content">
<p class="cookie-text">
We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.
</p>
<div class="cookie-buttons">
<button class="cookie-button cookie-accept">Accept</button>
</div>
</div>
</div>
</div>
<div class="footer-placeholder"></div>
<script src="/src/scripts/common.js"></script>
</html>