-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (83 loc) · 4.37 KB
/
index.html
File metadata and controls
95 lines (83 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#0f172a">
<title>Velox Markdown | Professional Browser-Based Editor</title>
<meta name="title" content="Velox Markdown | Professional Browser-Based Editor">
<meta name="description" content="Velox Markdown is a high-performance editor for developers. Experience real-time preview, instant file management, and a distraction-free workflow.">
<meta name="keywords" content="velox markdown, markdown editor, online code editor, developer dashboard, writing tool, fast text editor">
<meta name="author" content="Velox Markdown">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta property="og:type" content="website">
<meta property="og:url" content="https://veloxmd.vercel.app/">
<meta property="og:title" content="Velox Markdown | Professional Browser-Based Editor">
<meta property="og:description" content="Velox Markdown is a high-performance editor for developers. Experience real-time preview, instant file management, and a distraction-free workflow.">
<meta property="og:image" content="https://veloxmd.vercel.app/assets/velox-preview.jpg">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://veloxmd.vercel.app/">
<meta property="twitter:title" content="Velox Markdown | Professional Browser-Based Editor">
<meta property="twitter:description" content="Velox Markdown is a high-performance editor for developers. Experience real-time preview, instant file management, and a distraction-free workflow.">
<meta property="twitter:image" content="https://veloxmd.vercel.app/assets/velox-preview.jpg">
<link rel="canonical" href="https://veloxmd.vercel.app">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="icons/css/all.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="dashboard-container">
<!-- Top Nav Bar -->
<header class="dashboard-header">
<div class="dashboard-wordmark">
<div class="dashboard-logo-mark">
<i class="fas fa-feather-alt"></i>
</div>
<span class="dashboard-logo-text">Velox</span>
</div>
<div class="controls">
<button id="theme-toggle" title="Toggle Theme">
<i class="fas fa-moon"></i>
</button>
<a href="editor.html" id="new-document-btn" class="cta-button">
<i class="fas fa-plus"></i>
<span class="cta-button-text">New Document</span>
</a>
</div>
</header>
<!-- Page Title + count -->
<div class="dashboard-hero">
<h1 class="dashboard-title">My Documents</h1>
<span class="dashboard-doc-count" id="doc-count-badge">— files</span>
</div>
<main class="dashboard-main">
<section id="documents-grid" class="documents-grid">
<!-- Documents will be dynamically inserted here -->
</section>
</main>
<footer class="dashboard-footer">
<p>© <span id="copyright-year">2025</span> Velox Markdown</p>
</footer>
</div>
<script src="fs-helpers.js" defer></script>
<script src="dashboard.js" defer></script>
<!-- Custom Modal -->
<div id="modal-overlay" class="hidden">
<div id="modal">
<h3 id="modal-title"></h3>
<p id="modal-message"></p>
<input type="text" id="modal-input" class="hidden">
<div id="modal-actions">
<button id="modal-cancel-btn">Cancel</button>
<button id="modal-confirm-btn">Confirm</button>
</div>
</div>
</div>
</body>
</html>