-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
210 lines (197 loc) · 9.41 KB
/
Copy pathindex.html
File metadata and controls
210 lines (197 loc) · 9.41 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SmartStock — Integrated Inventory & Billing Solution</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta name="description" content="Smart inventory and billing solution for Indian retail stores. Auto-expiry protection, GST bills, real-time stock management." />
<link rel="stylesheet" href="css/style.css" />
<style>
/* ── Landing Page Specific ── */
.lp-nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: transparent; transition: all .3s ease;
}
.lp-nav.scrolled {
background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.lp-logo {
font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700;
color: var(--accent); letter-spacing: -.02em;
}
.lp-links { display: flex; gap: 28px; }
.lp-links a { font-size: .9rem; font-weight: 500; color: var(--text-b); transition: color .2s; }
.lp-links a:hover { color: var(--accent); }
/* Hero */
.lp-hero {
padding: 140px 0 100px;
background: linear-gradient(160deg, #F7F6F2 0%, #E8F5EE 60%, #F7F6F2 100%);
}
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
background: var(--accent-lt); color: var(--accent);
padding: 6px 16px; border-radius: 99px; font-size: .82rem; font-weight: 600;
margin-bottom: 24px; border: 1px solid rgba(45,106,79,.2);
}
.hero-title {
font-size: 3.2rem; font-weight: 700; letter-spacing: -.04em;
color: var(--text-h); margin-bottom: 20px; line-height: 1.1;
}
.hero-sub {
font-size: 1.1rem; color: var(--text-m); max-width: 560px;
margin: 0 auto; line-height: 1.7;
}
.hero-stats {
display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
margin-top: 56px; background: var(--surface);
border-radius: var(--radius-lg); border: 1px solid var(--border);
box-shadow: var(--shadow); display: inline-flex;
}
.hero-stat {
display: flex; flex-direction: column; padding: 20px 36px;
border-right: 1px solid var(--border);
align-items: center;
}
.hero-stat:last-child { border-right: none; }
.stat-n { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.hero-stat span:last-child { font-size: .78rem; color: var(--text-l); margin-top: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
/* Sections */
.lp-section { padding: 88px 0; }
.lp-section-dark { background: var(--accent); }
.lp-section-cream { background: var(--surface2); }
.section-label {
text-align: center; font-size: .75rem; font-weight: 700;
text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
margin-bottom: 12px;
}
.section-title {
font-size: 2.2rem; font-weight: 700; text-align: center;
letter-spacing: -.03em; color: var(--text-h); margin-bottom: 48px;
}
.mt-32 { margin-top: 32px; }
/* Features */
.feature-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-m); font-size: .88rem; line-height: 1.65; }
/* Steps */
.steps-row { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.step { display: flex; flex-direction: column; align-items: center; padding: 24px 32px; max-width: 220px; text-align: center; }
.step-num {
width: 48px; height: 48px; border-radius: 50%;
background: rgba(255,255,255,.15); color: #fff;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; font-weight: 700; font-family: var(--font-mono);
margin-bottom: 12px; border: 2px solid rgba(255,255,255,.3);
}
.step p { color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.6; }
/* Pricing */
.pricing-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; align-items: flex-start; }
.pricing-card {
flex: 1; min-width: 260px; max-width: 320px;
background: var(--surface); border: 1.5px solid var(--border);
border-radius: var(--radius-lg); padding: 32px; position: relative;
box-shadow: var(--shadow);
}
.pricing-highlight {
border-color: var(--accent); box-shadow: 0 8px 40px rgba(26,58,42,.2);
transform: scale(1.03);
}
.pricing-badge {
position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
padding: 4px 16px; border-radius: 99px; letter-spacing: .08em;
}
.pricing-plan { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-l); margin-bottom: 6px; }
.pricing-price { font-size: 2rem; font-weight: 700; font-family: var(--font-mono); color: var(--text-h); }
.pricing-tag { font-size: .8rem; color: var(--text-m); margin-bottom: 6px; }
.pricing-desc { font-size: .85rem; color: var(--text-m); margin: 12px 0 20px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li { font-size: .88rem; color: var(--text-b); display: flex; gap: 8px; }
/* Team */
.team-grid { display: flex; flex-direction: column; gap: 24px; max-width: 800px; margin: 0 auto 40px; }
.team-card {
display: flex; gap: 24px; align-items: flex-start;
background: var(--surface); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.team-avatar {
width: 72px; height: 72px; border-radius: var(--radius);
background: var(--accent-lt); display: flex; align-items: center;
justify-content: center; font-size: 2rem; flex-shrink: 0;
}
.team-info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-roll { font-family: var(--font-mono); font-size: .78rem; color: var(--text-l); }
.team-role { font-size: .82rem; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.team-info p { font-size: .88rem; color: var(--text-m); line-height: 1.65; }
.institute-badge {
background: var(--accent); color: rgba(255,255,255,.9);
border-radius: var(--radius-lg); padding: 24px 32px; text-align: center;
font-size: .88rem; line-height: 1.8; max-width: 700px; margin: 0 auto;
}
.institute-badge strong { color: #fff; font-size: 1rem; }
.institute-badge em { color: rgba(255,255,255,.65); font-style: normal; }
/* Contact */
.contact-grid { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.contact-icon { font-size: 1.2rem; }
/* Footer */
.lp-footer {
background: var(--surface2); border-top: 1px solid var(--border);
padding: 28px 0;
}
/* Login page */
.login-page {
min-height: 100vh; display: flex;
}
.login-left {
width: 420px; min-width: 340px; background: var(--accent);
padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.login-brand .login-logo {
font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: #fff;
}
.login-tagline { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 6px; }
.login-illustration { font-size: 5rem; margin: 40px 0 24px; }
.login-features { display: flex; flex-direction: column; gap: 10px; }
.lf-item { color: rgba(255,255,255,.8); font-size: .88rem; }
.login-right { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px; background: var(--bg); }
.login-box { width: 100%; max-width: 420px; }
.role-select-row {
display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 24px;
}
.role-btn {
display: flex; flex-direction: column; align-items: center; gap: 4px;
padding: 12px 8px; border-radius: 10px; border: 1.5px solid var(--border);
background: var(--surface); cursor: pointer; font-size: .75rem; font-weight: 600; color: var(--text-m);
transition: all var(--transition);
}
.role-btn span:first-child { font-size: 1.4rem; }
.role-btn:hover { border-color: var(--accent2); color: var(--accent2); }
.role-btn.active { border-color: var(--accent); background: var(--accent-lt); color: var(--accent); }
@media (max-width: 700px) {
.login-left { display: none; }
.hero-title { font-size: 2rem; }
.hero-stats { flex-direction: column; width: 100%; }
.hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
.lp-links { display: none; }
}
</style>
</head>
<body>
<div id="app"></div>
<!-- Scripts (order matters) -->
<script src="js/app.js"></script>
<script src="js/landing.js"></script>
<script src="js/cashier.js"></script>
<script src="js/dashboard.js"></script>
<script src="js/customer.js"></script>
</body>
</html>