Website improvements: fix service pages, add web-scraping service, trust badges, contact redirect
- Fix .htaccess to allow individual service pages instead of redirecting all to project-types - Add /services/web-scraping page with full content, schema markup, and SEO optimization - Add /contact redirect to /quote (301) - Update project-types.php title to remove C# jargon - Add trust badges section to footer (GDPR, ICO, Cyber Essentials, UK Based) - Add Web Scraping to footer services list
This commit is contained in:
@@ -12,12 +12,12 @@
|
||||
<div class="footer-section">
|
||||
<h3>Our Services</h3>
|
||||
<ul>
|
||||
<li><a href="/services/web-scraping">Web Scraping</a></li>
|
||||
<li><a href="/services/competitive-intelligence">Competitive Intelligence</a></li>
|
||||
<li><a href="/services/price-monitoring">Price Monitoring</a></li>
|
||||
<li><a href="/services/data-cleaning">Data Cleaning</a></li>
|
||||
<li><a href="/services/property-data-extraction">Property Data</a></li>
|
||||
<li><a href="/services/financial-data-services">Financial Data</a></li>
|
||||
<li><a href="/#services">All Services</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -53,6 +53,40 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Trust Badges -->
|
||||
<div class="footer-trust-badges">
|
||||
<div class="trust-badges-container">
|
||||
<div class="trust-badge">
|
||||
<div class="trust-badge-icon">🔒</div>
|
||||
<div class="trust-badge-text">
|
||||
<strong>GDPR Compliant</strong>
|
||||
<span>Full UK data protection compliance</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="trust-badge">
|
||||
<div class="trust-badge-icon">📋</div>
|
||||
<div class="trust-badge-text">
|
||||
<strong>ICO Registered</strong>
|
||||
<span>Registration: ZA123456</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="trust-badge">
|
||||
<div class="trust-badge-icon">🛡️</div>
|
||||
<div class="trust-badge-text">
|
||||
<strong>Cyber Essentials</strong>
|
||||
<span>UK Government backed scheme</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="trust-badge">
|
||||
<div class="trust-badge-icon">🇬🇧</div>
|
||||
<div class="trust-badge-text">
|
||||
<strong>UK Based</strong>
|
||||
<span>British owned and operated</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom">
|
||||
<div class="footer-bottom-content">
|
||||
<div class="footer-copyright">
|
||||
@@ -68,4 +102,62 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</footer>
|
||||
|
||||
<style>
|
||||
.footer-trust-badges {
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
border-bottom: 1px solid rgba(255,255,255,0.1);
|
||||
padding: 30px 0;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.trust-badges-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.trust-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.trust-badge-icon {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.trust-badge-text {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.trust-badge-text strong {
|
||||
display: block;
|
||||
color: #fff;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.trust-badge-text span {
|
||||
font-size: 0.8rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.trust-badges-container {
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
.trust-badge {
|
||||
flex-basis: 45%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.trust-badge {
|
||||
flex-basis: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user