Skip to content

Commit 457571d

Browse files
author
Valido
committed
update blog
1 parent afefd58 commit 457571d

1 file changed

Lines changed: 75 additions & 137 deletions

File tree

blog.html

Lines changed: 75 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
7-
<!-- Primary SEO Tags -->
8-
<title>Blog | Valido – PDF Automation Insights</title>
9-
<meta name="description" content="Learn about PDF automation, offline data validation, and document processing workflows with Valido.">
10-
11-
<!-- Canonical -->
12-
<link rel="canonical" href="https://valido.site/blog.html">
13-
<meta name="robots" content="index, follow">
14-
15-
<!-- Favicon -->
16-
<link rel="icon" type="image/x-icon" href="/valido-icon.ico">
17-
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
7+
<title>Offline PDF Automation & Data Validation Blog (No Cloud Uploads)</title>
8+
<meta name="description" content="Practical guides on offline PDF automation, rule-based data validation, and document processing without uploading files to the cloud." />
9+
10+
<link rel="canonical" href="https://valido.site/blog.html" />
11+
<meta name="robots" content="index, follow" />
12+
<link rel="icon" type="image/x-icon" href="/valido-icon.ico" />
13+
1814
<!-- Google Analytics -->
1915
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FQ1VB4MGYG"></script>
2016
<script>
@@ -23,190 +19,132 @@
2319
gtag('js', new Date());
2420
gtag('config', 'G-FQ1VB4MGYG');
2521
</script>
26-
27-
<style>
28-
* {
29-
margin: 0;
30-
padding: 0;
31-
box-sizing: border-box;
32-
}
33-
34-
:root {
35-
--primary: #0066ff;
36-
--primary-dark: #0052cc;
37-
--text-dark: #1f2937;
38-
--text-light: #6b7280;
39-
--bg-light: #f9fafb;
40-
--border: #e5e7eb;
41-
}
4222

23+
<style>
4324
body {
44-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
45-
color: var(--text-dark);
46-
line-height: 1.6;
47-
background: white;
25+
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
26+
color: #1f2937;
27+
line-height: 1.7;
28+
margin: 0;
4829
}
4930

5031
nav {
51-
background: white;
52-
border-bottom: 1px solid var(--border);
32+
border-bottom: 1px solid #e5e7eb;
5333
padding: 1rem 2rem;
54-
position: sticky;
55-
top: 0;
56-
z-index: 100;
34+
background: white;
5735
}
5836

5937
.nav-container {
60-
max-width: 1200px;
38+
max-width: 1100px;
6139
margin: 0 auto;
6240
display: flex;
6341
justify-content: space-between;
6442
align-items: center;
6543
}
6644

6745
.logo {
68-
font-size: 1.5rem;
69-
font-weight: 700;
70-
color: var(--primary);
46+
color: #0066ff;
7147
text-decoration: none;
48+
font-weight: 700;
49+
font-size: 1.4rem;
7250
}
7351

7452
.nav-links {
75-
display: flex;
76-
gap: 2rem;
7753
list-style: none;
54+
display: flex;
55+
gap: 1.5rem;
7856
}
7957

8058
.nav-links a {
81-
color: var(--text-dark);
8259
text-decoration: none;
83-
font-weight: 500;
84-
transition: color 0.3s;
85-
}
86-
87-
.nav-links a:hover {
88-
color: var(--primary);
60+
color: #1f2937;
8961
}
9062

91-
.blog-container {
63+
.container {
9264
max-width: 900px;
9365
margin: 0 auto;
9466
padding: 4rem 2rem;
9567
}
9668

97-
.blog-header {
98-
text-align: center;
99-
margin-bottom: 4rem;
100-
}
101-
102-
.blog-header h1 {
103-
font-size: 3rem;
69+
h1 {
70+
font-size: 2.8rem;
10471
margin-bottom: 1rem;
10572
}
10673

107-
.blog-header p {
108-
font-size: 1.25rem;
109-
color: var(--text-light);
74+
.intro {
75+
font-size: 1.2rem;
76+
color: #4b5563;
77+
margin-bottom: 3rem;
11078
}
11179

112-
.blog-posts {
80+
.posts {
11381
display: grid;
11482
gap: 2rem;
11583
}
11684

117-
.blog-post-card {
118-
background: var(--bg-light);
85+
.post {
86+
background: #f9fafb;
11987
border-radius: 12px;
12088
padding: 2rem;
121-
transition: transform 0.3s, box-shadow 0.3s;
12289
text-decoration: none;
12390
color: inherit;
124-
display: block;
125-
}
126-
127-
.blog-post-card:hover {
128-
transform: translateY(-4px);
129-
box-shadow: 0 12px 24px rgba(0,0,0,0.1);
13091
}
13192

132-
.post-date {
133-
color: var(--text-light);
134-
font-size: 0.9rem;
135-
margin-bottom: 0.5rem;
93+
.post h2 {
94+
margin-top: 0.5rem;
95+
font-size: 1.6rem;
13696
}
13797

138-
.post-title {
139-
font-size: 1.75rem;
140-
margin-bottom: 1rem;
141-
color: var(--text-dark);
142-
}
143-
144-
.post-excerpt {
145-
color: var(--text-light);
146-
line-height: 1.8;
147-
}
148-
149-
.read-more {
150-
color: var(--primary);
151-
font-weight: 600;
152-
margin-top: 1rem;
153-
display: inline-block;
98+
.post p {
99+
color: #4b5563;
154100
}
155101

156102
footer {
157-
background: var(--text-dark);
103+
background: #111827;
158104
color: white;
159105
padding: 2rem;
160106
text-align: center;
161-
margin-top: 4rem;
162-
}
163-
164-
@media (max-width: 768px) {
165-
.blog-header h1 {
166-
font-size: 2rem;
167-
}
168-
169-
.nav-links {
170-
gap: 1rem;
171-
}
172107
}
173108
</style>
174109
</head>
110+
175111
<body>
176112

177-
<nav>
178-
<div class="nav-container">
179-
<a href="/" class="logo">Valido</a>
180-
<ul class="nav-links">
181-
<li><a href="/">Home</a></li>
182-
<li><a href="#features">Features</a></li>
183-
<li><a href="#pricing">Pricing</a></li>
184-
<li><a href="blog.html">Blog</a></li>
185-
</ul>
186-
</div>
187-
</nav>
188-
189-
<div class="blog-container">
190-
<div class="blog-header">
191-
<h1>Valido Blog</h1>
192-
<p>Insights on PDF automation, data validation, and document processing</p>
193-
</div>
194-
195-
<div class="blog-posts">
196-
<a href="blog/offline-pdf-validation.html" class="blog-post-card">
197-
<div class="post-date">December 1, 2025</div>
198-
<h2 class="post-title">Offline PDF Data Validation: How to Automate Business Rules Without Uploading Documents</h2>
199-
<p class="post-excerpt">
200-
Learn how to automate PDF validation for payslips, invoices, and structured documents using rule-based automation that runs entirely on your computer—no cloud uploads required.
201-
</p>
202-
<span class="read-more">Read more →</span>
203-
</a>
204-
</div>
113+
<nav>
114+
<div class="nav-container">
115+
<a href="/" class="logo">Valido</a>
116+
<ul class="nav-links">
117+
<li><a href="/">Home</a></li>
118+
<li><a href="/blog.html">Blog</a></li>
119+
</ul>
205120
</div>
206-
207-
<footer>
208-
<p>&copy; 2025 Valido. All rights reserved. | <a href="mailto:info@valido.site" style="color: white;">info@valido.site</a></p>
209-
</footer>
121+
</nav>
122+
123+
<main class="container">
124+
<h1>Offline PDF Automation & Data Validation</h1>
125+
126+
<p class="intro">
127+
This blog focuses on automating PDF data extraction, validation, and batch processing
128+
using offline, rule-based workflows. All guides are designed for teams handling sensitive
129+
documents—such as invoices, payslips, financial reports, and compliance files—without
130+
uploading data to cloud services.
131+
</p>
132+
133+
<section class="posts">
134+
<a href="/blog/offline-pdf-validation.html" class="post">
135+
<small>December 1, 2025</small>
136+
<h2>Offline PDF Data Validation: Automate Business Rules Without Cloud Uploads</h2>
137+
<p>
138+
Learn how to validate PDF documents automatically using configurable business rules,
139+
batch processing, and offline execution—ideal for privacy-sensitive workflows.
140+
</p>
141+
</a>
142+
</section>
143+
</main>
144+
145+
<footer>
146+
<p>&copy; 2025 Valido. All rights reserved. | info@valido.site</p>
147+
</footer>
210148

211149
</body>
212150
</html>

0 commit comments

Comments
 (0)