-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
89 lines (82 loc) · 4.33 KB
/
Copy path404.html
File metadata and controls
89 lines (82 loc) · 4.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found - valuelayers.com</title>
<meta name="description" content="Page not found - Valuelayers">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<!-- Content -->
<div class="w-full px-4 sm:px-6 md:px-8">
<!-- Hero -->
<div class="relative overflow-hidden">
<div class="max-w-[85rem] mx-auto px-4 sm:px-6 lg:px-8 pt-24 pb-10">
<!-- Title -->
<div class="mt-5 max-w-xl text-center mx-auto">
<h1 class="block font-bold text-gray-800 text-4xl md:text-5xl lg:text-6xl dark:text-gray-200">
404
</h1>
</div>
<!-- End Title -->
<div class="mt-5 max-w-3xl text-center mx-auto">
<p class="text-lg text-gray-600 dark:text-gray-400">Oops! The page you're looking for doesn't exist.</p>
</div>
<!-- Buttons -->
<div class="mt-8 gap-3 flex justify-center">
<a class="inline-flex justify-center items-center gap-x-3 text-center bg-gradient-to-tl from-blue-600 to-violet-600 hover:from-violet-600 hover:to-blue-600 border border-transparent text-white text-sm font-medium rounded-full focus:outline-none focus:ring-2 focus:ring-blue-600 focus:ring-offset-2 focus:ring-offset-white py-3 px-4 dark:focus:ring-offset-gray-800"
href="/">
Back to Home
</a>
</div>
<!-- End Buttons -->
<!-- Suggested Tools -->
<div class="mt-12 max-w-3xl text-center mx-auto">
<h2 class="text-xl font-semibold text-gray-800 dark:text-gray-200 mb-4">
Discover Our Investment Tools
</h2>
<div class="space-y-4 text-gray-600 dark:text-gray-400">
<p>While you're here, explore our professional investment tools:</p>
<ul class="space-y-3">
<li>
<a href="/tools/dca-sp500/dca-sp500.html" class="text-blue-600 hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-300">
DCA S&P 500 Calculator - Simulate your wealth growth with dollar-cost averaging
</a>
</li>
<li>
<a href="/tools/portfolio-risk-management-calculator/portfolio-risk-management-calculator.html" class="text-blue-600 hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-300">
Portfolio Risk Calculator - Analyze and optimize your portfolio's risk-return ratio
</a>
</li>
<li>
<a href="/tools/dividend-discount-model/ddm-calculator.html" class="text-blue-600 hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-300">
Dividend Discount Model Calculator - Find undervalued dividend stocks using DCF analysis
</a>
</li>
</ul>
</div>
</div>
<!-- End Suggested Tools -->
</div>
</div>
<!-- End Hero -->
<!-- Footer -->
<footer class="mt-auto w-full max-w-[85rem] py-10 px-4 sm:px-6 lg:px-8 mx-auto">
<div class="text-center">
<div>
<a class="flex-none text-xl font-semibold text-black dark:text-white" href="https://valuelayers.com"
aria-label="Brand">Valuelayers</a>
</div>
<div class="mt-3">
<p class="text-gray-500 dark:text-neutral-500">
© 2024 Valuelayers. All rights reserved.
</p>
</div>
</div>
</footer>
<!-- End Footer -->
</div>
</body>
</html>