-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (76 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Herbal Garden</title>
<link rel="stylesheet" href="styles.css">
<script src="https://unpkg.com/lucide@latest"></script>
</head>
<body>
<nav class="navigation">
<div class="nav-container">
<div class="nav-brand">
<i data-lucide="leaf" class="brand-icon"></i>
<span class="brand-name">Herbal Garden</span>
</div>
<div class="nav-links" id="navLinks">
<a href="#explore">Explore</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<button class="signup-btn">
<i data-lucide="user-plus"></i>
Sign Up
</button>
</div>
<button class="menu-btn" id="menuBtn">
<i data-lucide="menu"></i>
</button>
</div>
</nav>
<main class="container">
<section class="hero">
<h1>
<span>Discover the Power of</span>
<span class="highlight">Natural Healing</span>
</h1>
<p>Explore our vast collection of herbal plants, connect with verified sellers, and learn about natural remedies through interactive 3D models and expert assistance.</p>
</section>
<section class="features">
<div class="feature-card">
<div class="feature-header">
<i data-lucide="box"></i>
<h3>3D Models</h3>
</div>
<p>Explore detailed 3D models of herbal plants to learn about their properties and characteristics.</p>
<button>Explore Models</button>
</div>
<div class="feature-card">
<div class="feature-header">
<i data-lucide="message-circle"></i>
<h3>Expert Assistant</h3>
</div>
<p>Get instant answers about herbal remedies and plant care from our AI-powered chatbot.</p>
<button>Chat Now</button>
</div>
<div class="feature-card">
<div class="feature-header">
<i data-lucide="shopping-bag"></i>
<h3>Marketplace</h3>
</div>
<p>Buy and sell verified herbal products from trusted sellers in our secure marketplace.</p>
<button>Visit Market</button>
</div>
</section>
<section class="cta">
<h2>Ready to start your herbal journey?</h2>
<p>Join our community of herbal enthusiasts and experts.</p>
<div class="cta-buttons">
<button class="primary">Get Started</button>
<button class="secondary">Learn More</button>
</div>
</section>
</main>
<script src="main.js"></script>
</body>
</html>