-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
129 lines (124 loc) · 4.33 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
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
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mancini-liquid-pill vanilla-threejs</title>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/overlay.css" />
</head>
<body>
<div id="webgl-container">
<canvas id="webgl"></canvas>
</div>
<div class="container">
<header>
<div class="brand">
<img src="brand.svg" alt="Brand Logo" />
<p>BIOTECH <strong>HEALTH</strong></p>
</div>
<div>
<ul>
<li>Learn</li>
<li>Numbers</li>
<li>Engage</li>
</ul>
</div>
<button>KNOW MORE</button>
</header>
<div class="main-wrapper">
<section class="section section-1">
<div class="wrapper">
<h2>Revolutionary <strong>DNA Repair</strong></h2>
<p>
Introducing a groundbreaking new drug that redefines
<strong>aging at the cellular level</strong>. Experience a new era
of mental clarity and youthful energy—because
<strong>aging is no longer a one-way street.</strong>
</p>
</div>
</section>
<section class="section section-2">
<div class="wrapper">
<h2>The <strong>Future</strong> of Cognitive Health</h2>
<p>
This breakthrough medicine goes beyond traditional treatments by
directly
<strong
>targeting DNA to trigger cellular regeneration in the
brain</strong
>. With cutting-edge technology, it repairs and revitalizes neural
pathways, offering unprecedented benefits for mental clarity and
cognitive health.
</p>
<ul>
<li>
DNA-driven cell repair for long-lasting
<strong>brain rejuvenation</strong>
</li>
<li>Enhanced <strong>memory and cognitive</strong> function</li>
<li>Increased <strong>mental sharpness</strong> and focus</li>
<li>
Support for overall <strong>brain health and longevity</strong>
</li>
</ul>
</div>
</section>
<section class="section section-3">
<div class="card-wrapper">
<div class="card">
<h2>85%</h2>
<p>
Over 85% of participants experienced significant improvements in
memory and cognitive function within the first 6 weeks
</p>
</div>
<div class="card">
<h2>85%</h2>
<p>
Over 85% of participants experienced significant improvements in
memory and cognitive function within the first 6 weeks
</p>
</div>
</div>
<div class="numbers-title">
<h2>BRAIN HEALTH <strong>BY THE NUMBERS</strong></h2>
<p>
In clinical trials, this revolutionary medication has shown
remarkable results. This cutting-edge treatment is proving to be a
game-changer in brain health and longevity.
</p>
</div>
</section>
</div>
<footer>
<div class="footer-left">
<h3>The time is now</h3>
<p>The path is forward</p>
<div class="social">
<img src="instagram.svg" alt="Instagram" width="30" />
<img src="youtube.svg" alt="YouTube" width="30" />
<img src="linkedin.svg" alt="LinkedIn" width="30" />
</div>
<p class="copyright">
Copyright © andersonmancini.dev. All rights reserved.
</p>
</div>
<div class="footer-right">
<img src="brand.svg" alt="Brand Logo" width="60" />
<ul>
<li>Privacy policy</li>
<li>Terms of service</li>
<li>Cookie policy</li>
<li>Disclaimer</li>
</ul>
</div>
</footer>
</div>
<div class="loader-container">
<div class="loader"></div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>