-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-info.html
More file actions
103 lines (88 loc) · 3.08 KB
/
dev-info.html
File metadata and controls
103 lines (88 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Info | TaskFlow</title>
<meta name="description" content="Technical details and developer information for TaskFlow.">
<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=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
.dev-content {
text-align: left;
}
.dev-content h2 {
margin-top: 1.5rem;
margin-bottom: 0.75rem;
font-size: 1.5rem;
color: var(--primary);
}
.dev-content p {
margin-bottom: 1rem;
line-height: 1.6;
color: var(--text-dim);
}
.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 2rem;
}
.tag {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--glass-border);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
color: var(--text-main);
}
.back-link {
display: inline-block;
margin-top: 2rem;
color: var(--primary);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
}
.back-link:hover {
color: var(--primary-hover);
transform: translateX(-4px);
}
</style>
</head>
<body>
<div class="background-blobs">
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="blob blob-3"></div>
</div>
<main class="app-container">
<header>
<h1>Dev Info</h1>
<p class="subtitle">Technical Specification</p>
</header>
<section class="dev-content">
<h2>Project Overview</h2>
<p>TaskFlow is a state-of-the-art todo application designed with premium aesthetics and smooth user
experience in mind. It features a glassmorphism UI, dynamic background animations, and responsive
design.</p>
<h2>Tech Stack</h2>
<div class="tech-tags">
<span class="tag">HTML5</span>
<span class="tag">CSS3 (Vanilla)</span>
<span class="tag">JavaScript (ES6+)</span>
<span class="tag">Google Fonts</span>
<span class="tag">GitHub Pages</span>
</div>
<h2>Developer</h2>
<p>Created by <strong>Yama</strong>. This project serves as a demonstration of high-end UI/UX design in a
simplified web application.</p>
<h2>Version</h2>
<p>v1.0.0 (January 2026)</p>
<a href="index.html" class="back-link">← Back to App</a>
</section>
</main>
</body>
</html>