-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
181 lines (139 loc) · 7.26 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html>
<head>
<title>Elevate Trend</title>
<link rel="stylesheet" type="text/css" href="../styling/landing.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href='https://unpkg.com/[email protected]/css/boxicons.min.css'rel='stylesheet'>
</head>
<body>
<section class="banner">
<header class="sticky">
<div class="container">
<div class="header-content">
<div class="logo-container">
<img src="../images/logo.png" alt="Logo Image">
<h2 class="logo">Elevate Trend</h2>
</div>
<ul class="nav">
<li><a href="#">Demo</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<button class="btn" id="registerButton">Register</button>
</div>
</div>
</header>
</section>
<div class="afterheader">
<div id="tagline">
<P id="tagp" class="centered">Your ultimate social media monitoring tool. </P>
<p id="tagp">Track, analyze, and elevate your social media presence with real-time data insights and comprehensive analytics. Unlock the power of social media with Elevate Trend.</p>
</div>
<div id="imagean">
<img src="../images/land_img.jpg" alt="">
</div>
</div>
<div class="features-intro">
<h2>These are some features of Elevate Trend</h2>
</div>
<div class="feature-section">
<div class="feature-box">
<h2 class="feature-title">Comprehensive Audience Insights</h2>
<p class="feature-description"> "Understand Your Audience with In-Depth Insights"</p>
</div>
<div class="feature-box">
<h2 class="feature-title">Advanced Sentiment and Trend Analysis</h2>
<p class="feature-description">"Leverage AI-Powered Sentiment and Trend Analysis"</p>
</div>
<div class="feature-box">
<h2 class="feature-title">Automated Data Collection and Aggregation</h2>
<p class="feature-description">"Streamline Your Insights with Automated Data Collection"</p>
</div>
</div>
<div class="reviews-section">
<h2>Reviews</h2>
<div class="reviews-container">
<div id="reviews-wrapper">
<div id="reviews-container">
<!-- Feedback items will be dynamically inserted here -->
</div>
</div>
</div>
<button id="view-all-btn">View All Reviews</button>
</div>
<footer>
<div class="footer-container">
<img src="../images/logo.png" alt="Logo" class="logo">
<div class="footer-section about">
<h2>About us</h2>
<ul>
<li><a href="#">Customers</a></li>
<li><a href="#">Why Elevate Tend</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Leadership</a></li>
<li><a href="#">Newsroom</a></li>
</ul>
</div>
<div class="footer-section support">
<h2>Support</h2>
<ul>
<li><a href="#">Need help?</a></li>
<li><a href="#">Product updates</a></li>
<li><a href="#">Contact sales</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
</div>
<div class="social-media">
<a href="https://www.facebook.com/profile.php?id=61561488003906" class="social-icon"><img src="../images/facebook.png" alt="Facebook"></a>
<a href="https://x.com/home?lang=en" class="social-icon"><img src="../images/twitter.png" alt="Twitter"></a>
<a href="https://www.youtube.com/channel/UCQVuQWdZ5STp81-Ud4FRVOQ" class="social-icon"><img src="../images/yt.png" alt="YouTube"></a>
<a href="#" class="social-icon"><img src="../images/linkedin.png" alt="LinkedIn"></a>
<a href="https://www.instagram.com/_elevate_trend_/" class="social-icon"><img src="../images/instagram.png" alt="Instagram"></a>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const reviews = [
{ name: "John Doe", feedback: "Great product! It exceeded my expectations." },
{ name: "Jane Smith", feedback: "Good value for money. I’m satisfied with the purchase." },
{ name: "Alice Johnson", feedback: "The quality is top-notch. Highly recommend it." },
{ name: "Bob Brown", feedback: "Decent product but could use some improvements." },
{ name: "Charlie Davis", feedback: "Fantastic! Will definitely buy again." },
{ name: "Eva Adams", feedback: "Absolutely loved it! Worth every penny." },
{ name: "Mike Brown", feedback: "The product is okay, but the service was excellent." },
{ name: "Linda Carter", feedback: "I am very pleased with my purchase." },
{ name: "James Wilson", feedback: "It's a great product, but delivery was slow." }
];
const reviewsContainer = document.getElementById('reviews-container');
const viewAllBtn = document.getElementById('view-all-btn');
// Function to create review boxes
function createReviewBox(review) {
const reviewBox = document.createElement('div');
reviewBox.className = 'review-box';
reviewBox.innerHTML = `<h3>${review.name}</h3><p>${review.feedback}</p>`;
return reviewBox;
}
// Load only the first 3 reviews initially
function loadInitialReviews() {
reviewsContainer.innerHTML = '';
reviews.slice(0, 3).forEach(review => {
reviewsContainer.appendChild(createReviewBox(review));
});
}
loadInitialReviews(); // Load initial reviews
// Redirect
registerButton.addEventListener('click', function () {
window.location.href = 'signup.html';
});
// Redirect to the all reviews page on button click
viewAllBtn.addEventListener('click', function() {
window.location.href = 'all-reviews.html'; // Navigate to a page that shows all reviews
});
});
</script>
</body>
</html>