-
Notifications
You must be signed in to change notification settings - Fork 0
/
get-started.php
120 lines (106 loc) · 4.89 KB
/
get-started.php
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
/**
* Template Name: Get Started
*
*/
get_header();
?>
<main class="dark-theme">
<section class="get-started-hero intro">
<div class="get-started-hero-back">
<div class="pin-area">
<div class="pin pin1"></div>
<div class="pin pin2"></div>
<div class="pin pin3"></div>
<div class="pin pin4"></div>
<div class="pin pin5"></div>
</div>
</div>
<div class="area flex align-center">
<div class="resp-logo">
<img src="<?php echo get_template_directory_uri(); ?>/img/logos/logo-white.svg">
</div>
<div class="get-start-icon-case">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/rocket.svg" />
</div>
<div class="col-8">
<div class="sub-section flex align-center">
<div class="icon small">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/rocket.svg" loading="lazy" />
</div>
<p class="subtitle">3 Easy steps to:</p>
</div>
<h1 class="title-giga"><?php the_title(); ?></h1>
<div class="text-20 light-blu">
<p>Ready to unlock a world of new possibilities? Whether you're eager to Create a DAO, Join a DAO, or Develop with Hypha, start with creating your Hypha Account. Follow our step-by-step guide below to get started.</p>
<?php // the_content(); ?>
</div>
</div>
</div>
<div class="area flex wrap gap-20">
<div class="col-x">
<a class="nostyle" href="<?php echo home_url(); ?>/get-started/create-hypha-account/">
<div class="generic-card glow-back has-link">
<div class="wrappo">
<div class="absolut-alert">*Required for the other options</div>
<div class="icon in-card">
<img src="<?php echo get_template_directory_uri(); ?>/img/logos/logo-round.svg" />
</div>
<h3 class="title-medium">Create your <br />Hypha Account<span class="light-blu">*</span>
</h3>
<div class="fake-button space">
<p>LET's DAO it!</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-x">
<a class="nostyle" href="<?php echo home_url(); ?>/get-started/create-your-dao/">
<div class="generic-card glow-back has-link">
<div class="wrappo">
<div class="icon in-card">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/rocket.svg" />
</div>
<h3 class="title-medium">Create<br />Your DAO</h3>
<div class="fake-button space">
<p>Let's begin</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-x">
<a class="nostyle" href="<?php echo home_url(); ?>/get-started/join-a-dao/">
<div class="generic-card glow-back has-link">
<div class="wrappo">
<div class="icon in-card">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/circles.svg" />
</div>
<h3 class="title-medium">Join a DAO<br /> as Member</h3>
<div class="fake-button space">
<p>Find your DAO</p>
</div>
</div>
</div>
</a>
</div>
<div class="col-x">
<a class="nostyle" href="<?php echo home_url(); ?>/get-started/develop-with-us/">
<div class="generic-card glow-back has-link">
<div class="wrappo">
<div class="icon in-card">
<img src="<?php echo get_template_directory_uri(); ?>/img/icons/dev.svg" />
</div>
<h3 class="title-medium">Develop<br />with Hypha</h3>
<div class="fake-button space">
<p>Next</p>
</div>
</div>
</div>
</a>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>