-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpress.html
More file actions
235 lines (201 loc) · 10 KB
/
Copy pathpress.html
File metadata and controls
235 lines (201 loc) · 10 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="DirectCompare in the press - articles, reviews, and coverage from around the web.">
<title>Press & Reviews - DirectCompare</title>
<style>
:root {
--bg: #07111f;
--panel: #0f1b2d;
--panel-2: #13243a;
--text: #eaf2ff;
--text-dark: #132033;
--muted: #a9b8cf;
--line: rgba(255, 255, 255, 0.12);
--line-dark: rgba(19, 32, 51, 0.12);
--brand: #6d8cff;
--brand-2: #8c6dff;
--accent: #4ee1c1;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.65;
color: var(--text);
background:
radial-gradient(circle at top left, rgba(109, 140, 255, 0.18), transparent 30%),
linear-gradient(180deg, #081221 0%, #0b1526 40%, #f5f9ff 40%, #f5f9ff 100%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.nav {
position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px);
background: rgba(7, 17, 31, 0.74); border-bottom: 1px solid var(--line);
}
.nav-inner {
min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
width: 38px; height: 38px; border-radius: 10px; object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 0.96rem; }
.nav-links a:hover { color: white; }
.nav-links a[aria-current="page"] { color: white; font-weight: 700; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.nav-cta {
padding: 11px 18px; border-radius: 999px; color: white; font-weight: 700;
background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.hero { padding: 72px 0 42px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 640px; }
.eyebrow {
text-transform: uppercase; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
color: var(--accent); margin-bottom: 10px;
}
.articles {
padding: 0 0 80px;
}
.article-card {
background: white; border-radius: 16px; padding: 32px 36px;
margin-bottom: 24px; color: var(--text-dark);
border: 1px solid var(--line-dark);
transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.article-card:hover {
box-shadow: 0 8px 32px rgba(109, 140, 255, 0.12);
transform: translateY(-2px);
}
.article-meta {
display: flex; align-items: center; gap: 12px;
font-size: 0.85rem; color: #6b7c93; margin-bottom: 12px;
}
.article-source {
font-weight: 700; color: var(--brand);
}
.article-card h2 {
font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35;
}
.article-card h2 a {
color: var(--text-dark);
text-decoration: none;
}
.article-card h2 a:hover {
color: var(--brand);
}
.article-card p {
color: #4a5568; line-height: 1.7; font-size: 0.98rem;
}
.read-link {
display: inline-flex; align-items: center; gap: 6px;
margin-top: 14px; font-weight: 700; font-size: 0.92rem;
color: var(--brand);
}
.read-link:hover { text-decoration: underline; }
.read-link svg { width: 16px; height: 16px; }
.cta-box {
background: white; border-radius: 16px; padding: 36px;
text-align: center; color: var(--text-dark);
border: 2px dashed rgba(109, 140, 255, 0.3);
margin-top: 16px;
}
.cta-box h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cta-box p { color: #6b7c93; font-size: 0.95rem; }
.cta-box a { color: var(--brand); font-weight: 700; }
.footer {
padding: 32px 0; text-align: center; color: #6b7c93; font-size: 0.92rem;
background: #f5f9ff; border-top: 1px solid var(--line-dark);
}
.footer a { color: #284a9e; font-weight: 700; }
@media (max-width: 700px) {
.nav-inner { flex-wrap: wrap; padding: 14px 0; }
.nav-links { width: 100%; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
.article-card { padding: 24px 20px; }
}
</style>
</head>
<body>
<nav class="nav">
<div class="container nav-inner">
<a href="index.html" class="brand">
<img src="icon.jpg" alt="DirectCompare" class="brand-mark">
<span>DirectCompare</span>
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="download.html">Download</a>
<a href="press.html" aria-current="page">Press</a>
<a href="support.html">Support</a>
<a href="privacy.html">Privacy</a>
<a href="https://github.com/DirectCompare/DirectCompare" target="_blank" rel="noopener noreferrer">GitHub</a>
<a href="download.html" class="nav-cta">Download Free</a>
</div>
</div>
</nav>
<header class="hero">
<div class="container">
<div class="eyebrow">Press & Reviews</div>
<h1>What people are saying about DirectCompare</h1>
<p>Articles, reviews, and coverage from around the web.</p>
</div>
</header>
<section class="articles">
<div class="container">
<article class="article-card">
<div class="article-meta">
<span class="article-source">KrispiTech</span>
<span>•</span>
<time datetime="2026-06-13">June 13, 2026</time>
</div>
<h2><a href="https://krispitech.com/why-two-way-comparison-isnt-enough-anymore-and-how-directcompare-changes-that-use-this-one/" target="_blank" rel="noopener noreferrer">Why Two-Way Comparison Isn't Enough Anymore and How DirectCompare Changes That</a></h2>
<p>
Explores how DirectCompare goes beyond traditional two-way file comparison by supporting simultaneous comparison of up to 16 sources — including Git branches, GitHub repos, and archives — giving developers and DevOps engineers a consolidated view for verifying deployments and reconciling differences.
</p>
<a href="https://krispitech.com/why-two-way-comparison-isnt-enough-anymore-and-how-directcompare-changes-that-use-this-one/" target="_blank" rel="noopener noreferrer" class="read-link">
Read article <svg viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z" clip-rule="evenodd"/></svg>
</a>
</article>
<article class="article-card">
<div class="article-meta">
<span class="article-source">VibeRank</span>
<span>•</span>
<time datetime="2026-06">June 2026</time>
</div>
<h2><a href="https://viberank.dev/?category=Developer+Tools" target="_blank" rel="noopener noreferrer">VibeRank Developer Tools — #1 This Week</a></h2>
<p>
DirectCompare ranked #1 this week, #3 this month, and #10 all-time in the Developer Tools category on VibeRank, a community-driven ranking board for software tools.
</p>
<a href="https://viberank.dev/?category=Developer+Tools" target="_blank" rel="noopener noreferrer" class="read-link">
View ranking <svg viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z" clip-rule="evenodd"/></svg>
</a>
</article>
<div class="cta-box">
<h3>Written about DirectCompare?</h3>
<p>We'd love to feature your article. Get in touch at <a href="mailto:press@directcompare.dev">press@directcompare.dev</a></p>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>
<strong>DirectCompare</strong> •
<a href="index.html">Home</a> •
<a href="download.html">Download</a> •
<a href="privacy.html">Privacy</a> •
<a href="https://github.com/DirectCompare/DirectCompare" target="_blank" rel="noopener noreferrer">GitHub</a>
</p>
<p style="margin-top:0.5rem;font-size:0.85rem;">
<strong>Guides:</strong> •
<a href="git-branch-compare.html">Compare Git branches</a> •
<a href="beyond-compare-alternative.html">Beyond Compare alternative</a> •
<a href="nway-folder-comparison.html">N-way folder comparison</a> •
<a href="cli-guide.html">CLI Quick Start</a> •
<a href="winmerge-alternative.html">WinMerge alternative</a>
</p>
</div>
</footer>
</body>
</html>