-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
297 lines (274 loc) · 13.4 KB
/
tools.html
File metadata and controls
297 lines (274 loc) · 13.4 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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tools - Nextomic Complete Finance Solutions</title>
<meta name="description"
content="Professional financial tools including calculators, trackers, and AI-powered analytics">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Anime.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/theme.css">
<link rel="stylesheet" href="assets/css/components.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/tools.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<h2><i class="fas fa-chart-line"></i> Nextomic</h2>
</div>
<ul class="nav-menu">
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="services.html" class="nav-link">Services</a></li>
<li class="nav-item"><a href="portfolio.html" class="nav-link">Portfolio</a></li>
<li class="nav-item"><a href="expense-tracker.html" class="nav-link">Expenses</a></li>
<li class="nav-item"><a href="calculator.html" class="nav-link">Calculator</a></li>
<li class="nav-item"><a href="demo.html" class="nav-link">Demo</a></li>
<li class="nav-item"><a href="tools.html" class="nav-link active">Tools</a></li>
<li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Page Hero -->
<section class="page-hero">
<div class="container">
<h1>Financial Tools</h1>
<p>Powerful calculators, trackers, and intelligent tools to help you make informed financial decisions</p>
</div>
</section>
<!-- Tools Section -->
<section class="tools-section">
<div class="container">
<!-- Section: Intelligent Tools -->
<div class="section-header">
<h2><i class="fas fa-brain"></i> Intelligent Tools</h2>
<p>AI-powered tools for smarter financial management</p>
</div>
<div class="tools-grid">
<!-- Chat Assistant -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-comments"></i>
</div>
<h3>Chat Assistant</h3>
<p>Get instant answers to your financial questions with our AI-powered chatbot</p>
<div class="tool-features">
<span class="feature-tag">24/7 Available</span>
<span class="feature-tag">Instant Responses</span>
<span class="feature-tag">Expert Advice</span>
</div>
<a href="demo.html#chat" class="btn btn-secondary">Try Now</a>
</div>
<!-- Spending Analyzer -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-chart-pie"></i>
</div>
<h3>Spending Analyzer</h3>
<p>Track and analyze your spending patterns with smart categorization</p>
<div class="tool-features">
<span class="feature-tag">Auto Categories</span>
<span class="feature-tag">Visual Reports</span>
<span class="feature-tag">Smart Alerts</span>
</div>
<a href="demo.html#analyzer" class="btn btn-secondary">Try Now</a>
</div>
<!-- Investment Predictor -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-crystal-ball"></i>
</div>
<h3>Investment Predictor</h3>
<p>AI-driven predictions and insights for smarter investment decisions</p>
<div class="tool-features">
<span class="feature-tag">Market Trends</span>
<span class="feature-tag">Risk Analysis</span>
<span class="feature-tag">Predictions</span>
</div>
<a href="demo.html#predictor" class="btn btn-secondary">Try Now</a>
</div>
</div>
<!-- Section: Financial Calculators -->
<div class="section-header" style="margin-top: 4rem;">
<h2><i class="fas fa-calculator"></i> Financial Calculators</h2>
<p>Quick and accurate calculations for your financial planning</p>
</div>
<div class="tools-grid">
<!-- EMI Calculator -->
<div class="tool-card featured">
<div class="tool-badge">Most Popular</div>
<div class="tool-icon">
<i class="fas fa-home"></i>
</div>
<h3>Loan/EMI Calculator</h3>
<p>Calculate your monthly EMI, total interest, and loan amortization instantly</p>
<div class="tool-features">
<span class="feature-tag">Home Loans</span>
<span class="feature-tag">Car Loans</span>
<span class="feature-tag">Personal Loans</span>
</div>
<a href="demo.html#emi" class="btn btn-primary">Calculate Now</a>
</div>
<!-- Retirement Calculator -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-umbrella-beach"></i>
</div>
<h3>Retirement Planner</h3>
<p>Plan yourretirement with accurate projections and savings goals</p>
<div class="tool-features">
<span class="feature-tag">Goal Setting</span>
<span class="feature-tag">Projections</span>
<span class="feature-tag">Inflation Adjusted</span>
</div>
<a href="demo.html#retirement" class="btn btn-secondary">Plan Now</a>
</div>
<!-- Investment Calculator -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-coins"></i>
</div>
<h3>Investment Returns</h3>
<p>Calculate potential returns on your investments with compound interest</p>
<div class="tool-features">
<span class="feature-tag">SIP Calculator</span>
<span class="feature-tag">Lump Sum</span>
<span class="feature-tag">Returns Analysis</span>
</div>
<a href="demo.html#investment" class="btn btn-secondary">Calculate</a>
</div>
</div>
<!-- Section: Tracking Tools -->
<div class="section-header" style="margin-top: 4rem;">
<h2><i class="fas fa-tasks"></i> Tracking & Management</h2>
<p>Monitor your financial goals and progress</p>
</div>
<div class="tools-grid">
<!-- Savings Goals -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-piggy-bank"></i>
</div>
<h3>Savings Goals Tracker</h3>
<p>Set and track multiple savings goals with visual progress indicators</p>
<div class="tool-features">
<span class="feature-tag">Multiple Goals</span>
<span class="feature-tag">Progress Tracking</span>
<span class="feature-tag">Milestones</span>
</div>
<a href="demo.html#savings" class="btn btn-secondary">Track Goals</a>
</div>
<!-- Budget Planner -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-clipboard-list"></i>
</div>
<h3>Budget Planner</h3>
<p>Create and manage your monthly budget with smart recommendations</p>
<div class="tool-features">
<span class="feature-tag">50/30/20 Rule</span>
<span class="feature-tag">Custom Budgets</span>
<span class="feature-tag">Alerts</span>
</div>
<a href="demo.html#budget" class="btn btn-secondary">Plan Budget</a>
</div>
<!-- Portfolio Tracker -->
<div class="tool-card">
<div class="tool-icon">
<i class="fas fa-chart-area"></i>
</div>
<h3>Portfolio Tracker</h3>
<p>Monitor your investment portfolio with real-time insights and analytics</p>
<div class="tool-features">
<span class="feature-tag">Asset Allocation</span>
<span class="feature-tag">Performance</span>
<span class="feature-tag">Rebalancing</span>
</div>
<a href="portfolio.html" class="btn btn-secondary">View Portfolio</a>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<div class="cta-content">
<h2>Ready to Take Control of Your Finances?</h2>
<p>Try all our tools for free and make smarter financial decisions</p>
<a href="demo.html" class="btn btn-primary btn-large">
<i class="fas fa-play-circle"></i>
Explore All Tools
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<i class="fas fa-chart-line"></i>
<span>Nextomic</span>
</div>
<p>Empowering your financial future with cutting-edge technology and personalized solutions.</p>
<div class="social-links">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul>
<li><a href="services.html">Personal Finance</a></li>
<li><a href="services.html">Investment Planning</a></li>
<li><a href="services.html">Loan Advisory</a></li>
<li><a href="services.html">Tax Calculators</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Tools</h3>
<ul>
<li><a href="tools.html">Chat Assistant</a></li>
<li><a href="tools.html">Spending Analyzer</a></li>
<li><a href="tools.html">Investment Predictor</a></li>
<li><a href="tools.html">EMI Calculator</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Nextomic. All rights reserved. | Owned by AtomNext Solutions</p>
</div>
</div>
</footer>
<!-- Custom JavaScript -->
<script src="assets/js/main.js"></script>
</body>
</html>