forked from de-synq/de-synq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (62 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Work+Sans:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css"
/>
<link rel="stylesheet" href="style.css" />
<title>De-Synq</title>
<meta name="description" content="Digital agency." />
</head>
<body>
<header>
<!-- navigation bar -->
<nav>
<div class="nav-logo-container">
<a href="/">
<img src="/assets/logo/De-Synq.svg" alt="logo" class="nav-logo" />
</a>
</div>
<div class="nav-item-container">
<a class="nav-item active" href="/">Works</a>
<a class="nav-item" href="/services">Services</a>
<a class="nav-item" href="/team">Team</a>
</div>
</nav>
</header>
<!-- hero section -->
<main class="hero-section">
<section class="intro-container">
<article class="intro-content">
<h1>Modern engineering for innovative companies.</h1>
<p class="intro-description">
We are passionate about all things React, React Native, and Web3.
</p>
<div class="intro-services">
<a href="/projects/ringdna/index.html">
<i class="las la-code"></i>
Ring DNA
</a>
</div>
</article>
<div class="intro-services-image">
<img
src="/assets/images/home-background.svg"
alt="background image"
class="background-image"
/>
</div>
</section>
</main>
</body>
</html>