-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
42 lines (40 loc) · 1.62 KB
/
about.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.jpg" type="image/svg+xml" />
<title>About</title>
</head>
<body>
<nav>
<a href="index.html">shop</a>
<a href="about.html">about</a>
</nav>
<header class="logo">
<h1>DesertGreens</h1>
</header>
<main>
<a href="" class="toggle-nav">
<img class="icon" src="/menu.svg" alt="menu" />
Menu
</a>
<section class="store">
<img src="/desert-greens.jpg" alt="plant3" />
<div class="about">
<h1>About DesertGreens</h1>
<p>
At Desert Greens, we bring the beauty and resilience of the desert into your home. Specializing in carefully
curated cacti and succulents, we offer unique plant collections that thrive with minimal care. Whether
you're a seasoned plant lover or just starting your green journey, our handpicked selections—like the Golden
Barrel, Saguaro, Bunny Ear, Blue Torch, and more—add a touch of nature’s artistry to any space. Rooted in a
passion for sustainability and the natural world, we ensure our plants are ethically sourced and grown with
care. Our mission is simple: to help you create your own serene desert oasis, one cactus at a time. Join us
in celebrating the rugged beauty of the desert—no green thumb required.
</p>
</div>
</section>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>