forked from piyushgarg-dev/review-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding page
149 lines (131 loc) · 3.26 KB
/
landing page
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Welcome to the Review App - Your Ultimate Review Management Solution">
<title>Review App - Manage Your Reviews Easily</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="container">
<h1 class="logo">Review App</h1>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="hero">
<div class="container">
<div class="hero-text">
<h1>Manage Your Reviews Easily</h1>
<p>Your ultimate solution for review management and customer feedback</p>
<a href="#contact" class="btn">Get Started</a>
</div>
<div class="hero-image">
<!-- Your hero image goes here -->
</div>
</div>
</div>
</header>
<section id="features" class="features">
<div class="container">
<h2>Features</h2>
<!-- Add feature cards with descriptions and icons here -->
</div>
</section>
<section id="pricing" class="pricing">
<div class="container">
<h2>Pricing</h2>
<!-- Add pricing plans and details here -->
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact Us</h2>
<!-- Add a contact form or contact information here -->
</div>
</section>
<footer>
<div class="container">
<p>© 2023 Review App. All rights reserved.</p>
</div>
</footer>
</body>
</html>
/* styles.css */
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header Styles */
header {
background-color: #333;
color: #fff;
padding: 20px 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
}
.nav-links li {
display: inline;
margin-right: 20px;
}
.nav-links a {
color: #fff;
text-decoration: none;
}
/* Hero Section Styles */
.hero {
background-image: url('your-hero-image.jpg');
background-size: cover;
background-position: center;
color: #fff;
padding: 100px 0;
}
.hero-text {
max-width: 600px;
}
.btn {
display: inline-block;
background-color: #ff6600;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #ff9900;
}
/* Other Section Styles (Features, Pricing, Contact) */
/* Footer Styles */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}