wow
This commit is contained in:
@@ -9,27 +9,27 @@ import { Shield, Lock, Zap, CheckCircle, Users, Globe, Server, Smartphone } from
|
||||
const VpnSetup = () => {
|
||||
useEffect(() => {
|
||||
document.title = 'VPN Setup Corpus Christi | Business WireGuard Experts';
|
||||
|
||||
|
||||
const metaDescription = document.querySelector('meta[name="description"]');
|
||||
if (metaDescription) {
|
||||
metaDescription.setAttribute('content', 'Secure remote access for SMBs—Corpus Christi\'s WireGuard VPN experts. Get fast, reliable VPN setup today.');
|
||||
}
|
||||
|
||||
|
||||
const ogTitle = document.querySelector('meta[property="og:title"]');
|
||||
if (ogTitle) {
|
||||
ogTitle.setAttribute('content', 'Corpus Christi WireGuard VPN Setup—Fast, Secure for SMBs');
|
||||
}
|
||||
|
||||
|
||||
const ogDescription = document.querySelector('meta[property="og:description"]');
|
||||
if (ogDescription) {
|
||||
ogDescription.setAttribute('content', 'Secure remote access for SMBs—Corpus Christi\'s WireGuard VPN experts. Get fast, reliable VPN setup today.');
|
||||
}
|
||||
|
||||
|
||||
const twitterTitle = document.querySelector('meta[name="twitter:title"]');
|
||||
if (twitterTitle) {
|
||||
twitterTitle.setAttribute('content', 'WireGuard VPN—Remote Work Corpus Christi');
|
||||
}
|
||||
|
||||
|
||||
const twitterDescription = document.querySelector('meta[name="twitter:description"]');
|
||||
if (twitterDescription) {
|
||||
twitterDescription.setAttribute('content', 'Secure remote access for SMBs—Corpus Christi\'s WireGuard VPN experts. Get fast, reliable VPN setup today.');
|
||||
@@ -39,7 +39,7 @@ const VpnSetup = () => {
|
||||
return (
|
||||
<div className="min-h-screen">
|
||||
<Navigation />
|
||||
<main>
|
||||
<main role="main">
|
||||
{/* Hero Section */}
|
||||
<section className="bg-gradient-to-br from-green-900 via-green-800 to-green-600 text-white py-20">
|
||||
<div className="container mx-auto px-4">
|
||||
@@ -72,7 +72,7 @@ const VpnSetup = () => {
|
||||
<div className="container mx-auto px-4">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<h2 className="text-3xl font-bold text-center mb-12">Why WireGuard for Corpus SMBs</h2>
|
||||
|
||||
|
||||
<div className="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<Card>
|
||||
<CardHeader>
|
||||
@@ -85,7 +85,7 @@ const VpnSetup = () => {
|
||||
<p className="text-gray-600">WireGuard outperforms traditional VPN protocols with minimal latency and maximum throughput for your remote teams.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<div className="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
|
||||
@@ -97,7 +97,7 @@ const VpnSetup = () => {
|
||||
<p className="text-gray-600">Advanced cryptography and smaller codebase mean fewer vulnerabilities and stronger protection for your business data.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<div className="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
|
||||
@@ -109,7 +109,7 @@ const VpnSetup = () => {
|
||||
<p className="text-gray-600">Easy configuration and maintenance with automatic key exchange and seamless roaming between networks.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<div className="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-4">
|
||||
@@ -131,7 +131,7 @@ const VpnSetup = () => {
|
||||
<div className="container mx-auto px-4">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<h2 className="text-3xl font-bold text-center mb-12">Benefits of Secure Remote Work</h2>
|
||||
|
||||
|
||||
<div className="grid md:grid-cols-3 gap-8 mb-12">
|
||||
<div className="text-center">
|
||||
<div className="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
@@ -140,7 +140,7 @@ const VpnSetup = () => {
|
||||
<h3 className="text-xl font-bold mb-2">Work From Anywhere</h3>
|
||||
<p className="text-gray-600">Access your office network securely from home, client sites, or anywhere in the world.</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="text-center">
|
||||
<div className="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
<Server className="w-10 h-10 text-blue-600" />
|
||||
@@ -148,7 +148,7 @@ const VpnSetup = () => {
|
||||
<h3 className="text-xl font-bold mb-2">Secure File Access</h3>
|
||||
<p className="text-gray-600">Connect to your business servers, printers, and shared drives as if you're in the office.</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="text-center">
|
||||
<div className="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
<Smartphone className="w-10 h-10 text-blue-600" />
|
||||
@@ -157,7 +157,7 @@ const VpnSetup = () => {
|
||||
<p className="text-gray-600">One VPN solution for all your devices—laptops, phones, tablets, and desktops.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="bg-white p-8 rounded-lg shadow-lg">
|
||||
<h3 className="text-2xl font-bold mb-6 text-center">WireGuard vs Traditional VPN</h3>
|
||||
<div className="overflow-x-auto">
|
||||
@@ -208,7 +208,7 @@ const VpnSetup = () => {
|
||||
<div className="container mx-auto px-4">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<h2 className="text-3xl font-bold text-center mb-12">Fast, Reliable VPN Deployment</h2>
|
||||
|
||||
|
||||
<div className="grid md:grid-cols-4 gap-8">
|
||||
<Card className="text-center">
|
||||
<CardHeader>
|
||||
@@ -221,7 +221,7 @@ const VpnSetup = () => {
|
||||
<p className="text-sm">Evaluate your network infrastructure and remote access needs.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
|
||||
<Card className="text-center">
|
||||
<CardHeader>
|
||||
<div className="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
@@ -233,7 +233,7 @@ const VpnSetup = () => {
|
||||
<p className="text-sm">Install and configure WireGuard server on your network.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
|
||||
<Card className="text-center">
|
||||
<CardHeader>
|
||||
<div className="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
@@ -245,7 +245,7 @@ const VpnSetup = () => {
|
||||
<p className="text-sm">Set up VPN clients on all employee devices with secure keys.</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
|
||||
<Card className="text-center">
|
||||
<CardHeader>
|
||||
<div className="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
@@ -268,10 +268,10 @@ const VpnSetup = () => {
|
||||
<div className="max-w-4xl mx-auto text-center">
|
||||
<h2 className="text-3xl font-bold mb-8">Trusted VPN Experts Serving the Coastal Bend</h2>
|
||||
<p className="text-xl text-gray-600 mb-8">
|
||||
Bay Area Affiliates specializes in secure network solutions for local businesses.
|
||||
Bay Area Affiliates specializes in secure network solutions for local businesses.
|
||||
We've helped hundreds of Corpus Christi SMBs implement reliable remote access.
|
||||
</p>
|
||||
|
||||
|
||||
<div className="grid md:grid-cols-2 gap-8 mb-12">
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<h3 className="text-xl font-bold mb-4 text-green-600">Local Business Focus</h3>
|
||||
@@ -282,7 +282,7 @@ const VpnSetup = () => {
|
||||
<li>• Bilingual technical support</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="bg-white p-6 rounded-lg shadow">
|
||||
<h3 className="text-xl font-bold mb-4 text-green-600">WireGuard Specialization</h3>
|
||||
<ul className="text-left space-y-2 text-gray-700">
|
||||
@@ -293,7 +293,7 @@ const VpnSetup = () => {
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="bg-white p-8 rounded-lg shadow-lg">
|
||||
<h3 className="text-2xl font-bold mb-4">Areas We Serve</h3>
|
||||
<div className="flex flex-wrap justify-center gap-4">
|
||||
@@ -315,10 +315,10 @@ const VpnSetup = () => {
|
||||
<div className="max-w-4xl mx-auto text-center">
|
||||
<h2 className="text-3xl font-bold mb-6">Secure Your Remote Work Today</h2>
|
||||
<p className="text-xl mb-8 text-green-100">
|
||||
Get a fast, secure WireGuard VPN setup from Corpus Christi's trusted IT experts.
|
||||
Get a fast, secure WireGuard VPN setup from Corpus Christi's trusted IT experts.
|
||||
Protect your business data and enable productive remote work.
|
||||
</p>
|
||||
|
||||
|
||||
<div className="flex flex-col sm:flex-row gap-4 justify-center mb-8">
|
||||
<Button size="lg" className="bg-orange-600 hover:bg-orange-700">
|
||||
<Lock className="w-5 h-5 mr-2" />
|
||||
@@ -328,7 +328,7 @@ const VpnSetup = () => {
|
||||
Call (361) 765-8400
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
|
||||
<p className="text-green-200">
|
||||
Free consultation • Same-day setup available • Local support team
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user