659 lines
31 KiB
HTML
659 lines
31 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Christ IT | Field-Tested Infrastructure</title>
|
|
<meta name="description" content="Independent IT Field Engineer serving Oak Grove, KY and Clarksville, TN. Specializing in Low Voltage, Linux Systems, and Hardware Repair.">
|
|
|
|
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M44 4V60C44 62.2 42.2 64 40 64H32C29.8 64 28 62.2 28 60V24H18C15.8 24 14 22.2 14 20V16C14 13.8 15.8 12 18 12H44Z' fill='%23004e92'/%3E%3Crect x='8' y='36' width='12' height='24' rx='2' fill='%23374151'/%3E%3Ccircle cx='14' cy='24' r='5' fill='%23f59e0b'/%3E%3C/svg%3E" type="image/svg+xml">
|
|
|
|
<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=Inter:wght@400;500;600&family=Oswald:wght@500;700&display=swap" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
|
|
|
<style>
|
|
/* --- 1. GLOBAL VARIABLES (THEME ENGINE) --- */
|
|
:root {
|
|
/* Light Mode (Default) */
|
|
--bg-body: #ffffff;
|
|
--bg-offset: #f3f4f6;
|
|
--bg-highlight: #eef2ff;
|
|
--bg-card: #ffffff;
|
|
--bg-nav: rgba(255, 255, 255, 0.95);
|
|
|
|
--text-dark: #1f2937;
|
|
--text-body: #4b5563;
|
|
--text-light: #9ca3af;
|
|
|
|
--primary: #0056b3;
|
|
--primary-dark: #003d6b;
|
|
--accent: #e67e22;
|
|
|
|
--border: #e5e7eb;
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
|
|
--logo-text: #1f2937;
|
|
}
|
|
|
|
/* Dark Mode Overrides */
|
|
[data-theme="dark"] {
|
|
--bg-body: #0f172a; /* Deep Navy/Black */
|
|
--bg-offset: #1e293b; /* Lighter Navy */
|
|
--bg-highlight: #172554; /* Deep Blue Highlight */
|
|
--bg-card: #1e293b;
|
|
--bg-nav: rgba(15, 23, 42, 0.95);
|
|
|
|
--text-dark: #f8fafc; /* White/Off-White */
|
|
--text-body: #cbd5e1; /* Light Grey */
|
|
--text-light: #94a3b8;
|
|
|
|
--primary: #3b82f6; /* Brighter Blue for Dark Mode */
|
|
--primary-dark: #60a5fa;
|
|
|
|
--border: #334155;
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
|
|
|
|
--logo-text: #ffffff;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
background-color: var(--bg-body);
|
|
color: var(--text-body);
|
|
font-family: 'Inter', sans-serif;
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
transition: background-color 0.3s, color 0.3s;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Oswald', sans-serif;
|
|
text-transform: uppercase;
|
|
color: var(--text-dark);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
a { text-decoration: none; color: inherit; transition: 0.2s; }
|
|
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }
|
|
|
|
/* --- 2. BUTTONS --- */
|
|
.text-primary { color: var(--primary); }
|
|
.text-accent { color: var(--accent); }
|
|
|
|
.btn {
|
|
display: inline-flex; align-items: center; gap: 10px;
|
|
padding: 12px 28px;
|
|
font-weight: 600; font-size: 1rem;
|
|
text-transform: uppercase; letter-spacing: 0.5px;
|
|
background-color: var(--primary); color: white;
|
|
border-radius: 4px; border: 2px solid transparent;
|
|
box-shadow: var(--shadow-sm); cursor: pointer;
|
|
}
|
|
.btn:hover {
|
|
background-color: var(--primary-dark);
|
|
color: white !important; transform: translateY(-1px);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.btn-outline {
|
|
background-color: transparent; color: var(--text-dark);
|
|
border: 2px solid var(--border);
|
|
}
|
|
.btn-outline:hover {
|
|
background-color: var(--primary); border-color: var(--primary);
|
|
color: white !important;
|
|
}
|
|
|
|
.btn-accent { background-color: var(--accent); color: white; }
|
|
.btn-accent:hover { background-color: #d35400; color: white !important; }
|
|
|
|
.btn-windows {
|
|
display: flex; align-items: center; justify-content: center; gap: 10px;
|
|
width: 100%; padding: 15px;
|
|
background-color: #0078D7; color: white;
|
|
font-weight: 600; border-radius: 4px;
|
|
margin-top: 15px;
|
|
}
|
|
.btn-windows:hover { background-color: #005a9e; color: white; }
|
|
|
|
/* --- 3. NAVIGATION --- */
|
|
nav {
|
|
padding: 15px 0; border-bottom: 1px solid var(--border);
|
|
background: var(--bg-nav); backdrop-filter: blur(10px);
|
|
position: sticky; top: 0; z-index: 100;
|
|
transition: background-color 0.3s, border-color 0.3s;
|
|
}
|
|
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
|
|
|
|
/* Dark/Light Toggle Button */
|
|
.theme-toggle {
|
|
background: transparent; border: 1px solid var(--border);
|
|
color: var(--text-body);
|
|
width: 40px; height: 40px; border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
cursor: pointer; transition: 0.3s;
|
|
font-size: 1.1rem;
|
|
}
|
|
.theme-toggle:hover {
|
|
background-color: var(--bg-offset);
|
|
color: var(--primary); border-color: var(--primary);
|
|
}
|
|
|
|
/* --- 4. HERO SECTION --- */
|
|
.hero {
|
|
padding: 80px 0 140px;
|
|
background: linear-gradient(to bottom right, var(--bg-offset), var(--bg-body));
|
|
position: relative; overflow: hidden;
|
|
}
|
|
.hero::before {
|
|
content: ""; position: absolute; inset: 0;
|
|
background-image: radial-gradient(var(--border) 1px, transparent 1px);
|
|
background-size: 30px 30px; opacity: 0.5; pointer-events: none;
|
|
}
|
|
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
|
|
.hero-content h1 { font-size: 4rem; margin-bottom: 20px; }
|
|
.hero-content p {
|
|
font-size: 1.25rem; color: var(--text-body); margin-bottom: 35px; max-width: 90%;
|
|
border-left: 4px solid var(--accent); padding-left: 20px;
|
|
}
|
|
.hero-image {
|
|
position: relative; width: 100%; aspect-ratio: 1/1;
|
|
border-radius: 50%; background: var(--bg-card);
|
|
border: 8px solid var(--bg-body); box-shadow: var(--shadow-md); overflow: hidden;
|
|
}
|
|
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
|
|
|
|
/* --- 5. FLOATING ICON BAR --- */
|
|
.icon-bar-wrapper { margin-top: -70px; position: relative; z-index: 10; }
|
|
.icon-bar {
|
|
background: var(--bg-card); border-radius: 8px;
|
|
display: grid; grid-template-columns: repeat(4, 1fr);
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden; border: 1px solid var(--border);
|
|
}
|
|
.icon-box {
|
|
padding: 30px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px;
|
|
border-right: 1px solid var(--border); transition: 0.2s;
|
|
}
|
|
.icon-box:last-child { border-right: none; }
|
|
.icon-box:hover { background: var(--bg-offset); }
|
|
.icon-box i { font-size: 2rem; color: var(--primary); margin-bottom: 5px; }
|
|
.icon-box h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--text-dark); }
|
|
.icon-box span { font-size: 0.9rem; color: var(--text-body); }
|
|
|
|
/* --- 6. SERVICES SECTION --- */
|
|
.section { padding: 100px 0; }
|
|
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
|
|
.section-header h2 { font-size: 3rem; margin-bottom: 15px; }
|
|
|
|
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
|
|
.service-card {
|
|
background: var(--bg-card); padding: 40px; border-radius: 8px;
|
|
border: 1px solid var(--border); transition: 0.3s;
|
|
}
|
|
.service-card:hover {
|
|
transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-md);
|
|
}
|
|
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
|
|
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-dark); }
|
|
.service-card ul { list-style: none; margin-top: 20px; }
|
|
.service-card li {
|
|
margin-bottom: 8px; font-size: 0.95rem; color: var(--text-body);
|
|
display: flex; align-items: center; gap: 10px;
|
|
}
|
|
.service-card li::before { content: "•"; color: var(--accent); font-weight: bold; font-size: 1.2rem; }
|
|
|
|
/* --- 7. REMOTE SUPPORT SECTION --- */
|
|
.remote-section {
|
|
background-color: var(--bg-highlight);
|
|
padding: 80px 0;
|
|
border-top: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.remote-layout {
|
|
display: flex; align-items: center; justify-content: space-between; gap: 40px;
|
|
}
|
|
.remote-text h2 { font-size: 2.5rem; margin-bottom: 15px; }
|
|
.remote-text p { font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; }
|
|
|
|
.mc-card {
|
|
background: var(--bg-card); width: 100%; max-width: 350px;
|
|
padding: 25px; border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1); border: 1px solid var(--border);
|
|
}
|
|
.mc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
|
|
.mc-header i { font-size: 24px; color: #0078D7; }
|
|
.mc-title { font-weight: 700; font-size: 1.1rem; color: var(--text-dark); }
|
|
.mc-subtitle { font-size: 0.85rem; color: var(--text-body); display: block; }
|
|
.mc-body { font-size: 0.9rem; color: var(--text-body); line-height: 1.5; margin-bottom: 20px; }
|
|
.mc-footer-link { display: block; text-align: center; margin-top: 10px; font-size: 0.85rem; color: #0078D7; text-decoration: underline; }
|
|
|
|
/* --- 8. PRICING SECTION --- */
|
|
.bg-offset { background-color: var(--bg-offset); }
|
|
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
|
|
.price-card {
|
|
background: var(--bg-card); padding: 40px 30px; border-radius: 8px;
|
|
box-shadow: var(--shadow-sm); border: 1px solid transparent;
|
|
display: flex; flex-direction: column; transition: 0.3s;
|
|
}
|
|
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
|
|
.price-card.featured { border-top: 4px solid var(--accent); position: relative; }
|
|
.price-card.featured::before {
|
|
content: "Most Common"; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
|
|
background: var(--accent); color: white; padding: 4px 12px; font-size: 0.75rem;
|
|
text-transform: uppercase; font-weight: bold; border-radius: 20px;
|
|
}
|
|
.price-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; font-family: 'Oswald', sans-serif; }
|
|
.price-amount { font-size: 3rem; color: var(--text-dark); font-weight: 700; line-height: 1; margin-bottom: 5px; }
|
|
.price-meta { font-size: 0.9rem; color: var(--text-body); margin-bottom: 25px; font-weight: 500; }
|
|
.price-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
|
|
.price-list li { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
|
|
.price-list li i { color: var(--primary); }
|
|
|
|
/* --- 9. VIDEO SHORTS --- */
|
|
.video-section { background: var(--bg-card); border-bottom: 1px solid var(--border); }
|
|
.video-shorts-container {
|
|
width: 100%; max-width: 400px; background: #000;
|
|
margin: 0 auto; min-height: 600px; border-radius: 12px;
|
|
overflow: hidden; display: flex; align-items: center; justify-content: center;
|
|
border: 4px solid #333;
|
|
}
|
|
|
|
/* --- 10. BIO & FOOTER --- */
|
|
.bio-section { padding: 100px 0; background: var(--bg-offset); }
|
|
.bio-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
|
|
.bio-img-box {
|
|
width: 100%; aspect-ratio: 4/5;
|
|
background: #e5e7eb; border-radius: 8px; overflow: hidden;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
footer { padding: 60px 0 30px; background: #0f172a; color: #94a3b8; }
|
|
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
|
|
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 1.8rem; color: white; margin-bottom: 15px; display: block; }
|
|
.footer-bottom {
|
|
margin-top: 50px; padding-top: 20px; border-top: 1px solid #334155;
|
|
text-align: center; font-size: 0.9rem; color: #64748b;
|
|
}
|
|
|
|
/* --- RESPONSIVE --- */
|
|
@media (max-width: 900px) {
|
|
.hero-grid { grid-template-columns: 1fr; text-align: center; }
|
|
.hero-content p { margin: 0 auto 40px; border-left: none; padding: 0; }
|
|
.hero-image { width: 300px; height: 300px; margin: 0 auto; }
|
|
.icon-bar { grid-template-columns: 1fr 1fr; }
|
|
.icon-box { border-bottom: 1px solid var(--border); }
|
|
.icon-box:nth-child(2) { border-right: none; }
|
|
.remote-layout { flex-direction: column; text-align: center; }
|
|
.bio-layout { grid-template-columns: 1fr; }
|
|
}
|
|
@media (max-width: 600px) {
|
|
.hero-content h1 { font-size: 3rem; }
|
|
.icon-bar { grid-template-columns: 1fr; }
|
|
.icon-box { border-right: none; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<div class="container nav-inner">
|
|
<a href="#" class="logo" style="display:flex; align-items:center;">
|
|
<svg height="45" viewBox="0 0 340 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<text x="0" y="62" font-family="Montserrat, sans-serif" font-weight="900" font-size="48" fill="var(--logo-text)" letter-spacing="-2">CHRIST</text>
|
|
<g transform="translate(200, 0)">
|
|
<rect x="0" y="32" width="14" height="30" rx="4" fill="var(--logo-text)"/>
|
|
<circle cx="7" cy="18" r="7" fill="#e67e22"/>
|
|
<rect x="35" y="0" width="18" height="62" rx="4" fill="#0056b3"/>
|
|
<rect x="22" y="15" width="44" height="16" rx="4" fill="#0056b3"/>
|
|
</g>
|
|
</svg>
|
|
</a>
|
|
<div>
|
|
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle Dark Mode">
|
|
<i class="fa-solid fa-moon"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="hero">
|
|
<div class="container hero-grid">
|
|
<div class="hero-content">
|
|
<h1><span class="text-primary">Real Tech Support</span>
|
|
|
|
|
|
For Real Problems</h1>
|
|
|
|
<p>
|
|
Stop struggling with slow computers, messy cables, and confusing networks. Whether you need a simple laptop repair or a complete business network overhaul, I provide honest, skilled technical labor right here in Oak Grove and Clarksville. No geek-speak, just results.
|
|
</p>
|
|
<div style="display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; md:justify-content: flex-start;">
|
|
<a href="#pricing" class="btn btn-accent">See Pricing <i class="fa-solid fa-tag"></i></a>
|
|
<a href="#services" class="btn btn-outline">Our Services <i class="fa-solid fa-arrow-down"></i></a>
|
|
</div>
|
|
<div style="margin-top: 25px; font-size: 0.95rem; color: var(--text-body); font-weight: 500;">
|
|
<i class="fa-solid fa-location-dot text-primary"></i> Locally Owned & Operated in Oak Grove, KY
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hero-image">
|
|
<img src="https://via.placeholder.com/800x800/f3f4f6/999999?text=Jason+Garrison" alt="Jason Garrison Field Engineer">
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container icon-bar-wrapper">
|
|
<div class="icon-bar">
|
|
<div class="icon-box">
|
|
<i class="fa-solid fa-screwdriver-wrench"></i>
|
|
<h4>Hardware Repair</h4>
|
|
<span>PCs, Laptops & Servers</span>
|
|
</div>
|
|
<div class="icon-box">
|
|
<i class="fa-solid fa-network-wired"></i>
|
|
<h4>Infrastructure</h4>
|
|
<span>Low-Voltage & Cabling</span>
|
|
</div>
|
|
<div class="icon-box">
|
|
<i class="fa-solid fa-bars-progress"></i>
|
|
<h4>Project Management</h4>
|
|
<span>Planning & Execution</span>
|
|
</div>
|
|
<div class="icon-box">
|
|
<i class="fa-solid fa-user-shield"></i>
|
|
<h4>Consulting</h4>
|
|
<span>Independent & Secure</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<section id="services" class="section">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Professional IT <span class="text-primary">Services</span></h2>
|
|
<p>Bringing enterprise standards to your home or small business. Reliable, secure, and independent technical support.</p>
|
|
</div>
|
|
|
|
<div class="services-grid">
|
|
|
|
<div class="service-card">
|
|
<i class="fa-solid fa-house-laptop"></i>
|
|
<h3>Residential Tech Support</h3>
|
|
<p>Professional-grade repair for the home. I treat your personal computer with the same care and precision as a corporate server.</p>
|
|
<ul>
|
|
<li><span class="text-accent">•</span> Hardware Repair & Upgrades</li>
|
|
<li><span class="text-accent">•</span> Virus & Malware Removal</li>
|
|
<li><span class="text-accent">•</span> Data Recovery & Transfer</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<i class="fa-solid fa-diagram-project"></i>
|
|
<h3>Structured Cabling</h3>
|
|
<p>Your network is only as good as the physical wire. Professional low-voltage installation, termination, and certification.</p>
|
|
<ul>
|
|
<li><span class="text-accent">•</span> Cat6 Ethernet Drops</li>
|
|
<li><span class="text-accent">•</span> Starlink & WISP Mounting</li>
|
|
<li><span class="text-accent">•</span> Rack Cleanup & Management</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<i class="fa-solid fa-building-shield"></i>
|
|
<h3>Commercial Infrastructure</h3>
|
|
<p>Reliable technology foundations for small businesses and churches. I manage the network hardware so you can focus on your mission.</p>
|
|
<ul>
|
|
<li><span class="text-accent">•</span> Network Design & Stability</li>
|
|
<li><span class="text-accent">•</span> Server Room Maintenance</li>
|
|
<li><span class="text-accent">•</span> Secure Guest Wi-Fi Setup</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<section id="services" class="section">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Professional IT <span class="text-primary">Services</span></h2>
|
|
<p>Bringing enterprise standards to your home or small business. Reliable, secure, and independent technical support.</p>
|
|
</div>
|
|
|
|
<div class="services-grid">
|
|
<div class="service-card">
|
|
<i class="fa-solid fa-laptop-medical"></i>
|
|
<h3>Computer Repair</h3>
|
|
<p>Don't replace it when it can be fixed. I breathe new life into aging hardware and rescue critical data from failing drives.</p>
|
|
<ul>
|
|
<li>LCD Screen Replacement</li>
|
|
<li>Hard Drive to SSD Upgrades</li>
|
|
<li>Virus & Malware Removal</li>
|
|
</ul>
|
|
</div>
|
|
<div class="service-card">
|
|
<i class="fa-solid fa-diagram-project"></i>
|
|
<h3>Network Cabling</h3>
|
|
<p>Professional low-voltage installation for homes and businesses. Neat, labeled, and tested to gigabit standards.</p>
|
|
<ul>
|
|
<li>Cat6 Ethernet Drops</li>
|
|
<li>Security Camera Installation</li>
|
|
<li>Rack Cleanup & Management</li>
|
|
</ul>
|
|
</div>
|
|
<div class="service-card">
|
|
<i class="fa-brands fa-linux"></i>
|
|
<h3>Linux & Servers</h3>
|
|
<p>Enterprise-grade self-hosting solutions. Take back control of your data with private cloud infrastructure.</p>
|
|
<ul>
|
|
<li>Proxmox & Virtualization</li>
|
|
<li>Ubuntu Server Management</li>
|
|
<li>Docker Container Deployment</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="remote-section">
|
|
<div class="container remote-layout">
|
|
<div class="remote-text">
|
|
<h2>Need Help <span class="text-primary">Right Now?</span></h2>
|
|
<p>Skip the travel fee. If you have a working internet connection, I can connect securely to your computer and fix many software, email, and virus issues instantly. If you haven't connected before, download the assistant on the right.</p>
|
|
<a href="https://connect.christit.com" class="btn btn-accent">
|
|
Launch Remote Support <i class="fa-solid fa-headset"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="mc-card">
|
|
<div class="mc-header">
|
|
<i class="fa-brands fa-windows"></i>
|
|
<div>
|
|
<div class="mc-title">Assistant</div>
|
|
<span class="mc-subtitle">Windows Support Tool</span>
|
|
</div>
|
|
</div>
|
|
<div class="mc-body">
|
|
Assistant is a Windows system tray tool that can be used when help is needed.
|
|
This is not an agent that runs in the background; it connects to the server only when requested.
|
|
</div>
|
|
<a href="https://mesh.christit.com/agentinvite" class="btn-windows">
|
|
<i class="fa-solid fa-download"></i> Download Assistant for Windows
|
|
</a>
|
|
<a href="#" class="mc-footer-link">Blocked? See Instructions</a>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<section id="pricing" class="section bg-offset">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Transparent <span class="text-accent">Pricing</span></h2>
|
|
<p>Simple, flat-rate pricing. You always know what you're paying before the work begins.</p>
|
|
</div>
|
|
|
|
<div class="pricing-grid">
|
|
|
|
<div class="price-card">
|
|
<div class="price-title">Remote Support</div>
|
|
<div class="price-amount">$100</div>
|
|
<div class="price-meta">Flat Rate Per Incident</div>
|
|
<ul class="price-list">
|
|
<li><i class="fa-solid fa-check"></i> Virus & Malware Removal</li>
|
|
<li><i class="fa-solid fa-check"></i> Software Troubleshooting</li>
|
|
<li><i class="fa-solid fa-check"></i> Email Configuration</li>
|
|
<li><i class="fa-solid fa-check"></i> Printer Setup</li>
|
|
</ul>
|
|
<a href="https://connect.christit.com" class="btn btn-outline" style="justify-content:center;">Book Remote</a>
|
|
</div>
|
|
|
|
<div class="price-card featured">
|
|
<div class="price-title text-accent">On-Site Service</div>
|
|
<div class="price-amount">$75</div>
|
|
<div class="price-meta">Per Hour (1hr Minimum)</div>
|
|
<ul class="price-list">
|
|
<li><i class="fa-solid fa-check"></i> Hardware Repair & Upgrades</li>
|
|
<li><i class="fa-solid fa-check"></i> Network Cabling (Cat6)</li>
|
|
<li><i class="fa-solid fa-check"></i> Wi-Fi Mesh Installation</li>
|
|
<li><i class="fa-solid fa-check"></i> Custom PC Builds</li>
|
|
</ul>
|
|
<a href="mailto:support@christit.com" class="btn" style="background: var(--accent); justify-content:center;">Schedule Visit</a>
|
|
</div>
|
|
|
|
<div class="price-card">
|
|
<div class="price-title">Advanced Projects</div>
|
|
<div class="price-amount">$150+</div>
|
|
<div class="price-meta">Starting Base Rate</div>
|
|
<ul class="price-list">
|
|
<li><i class="fa-solid fa-check"></i> Data Recovery</li>
|
|
<li><i class="fa-solid fa-check"></i> Server Configuration</li>
|
|
<li><i class="fa-solid fa-check"></i> Advanced Networking</li>
|
|
<li><i class="fa-solid fa-check"></i> Board Level Repair</li>
|
|
</ul>
|
|
<a href="mailto:support@christit.com" class="btn btn-outline" style="justify-content:center;">Request Quote</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section video-section">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Christ IT <span class="text-primary">Shorts</span></h2>
|
|
<p>Quick tips, repairs, and updates from the field.</p>
|
|
</div>
|
|
|
|
<div class="video-shorts-container">
|
|
<div style="text-align:center; color: #666; padding: 20px;">
|
|
<i class="fa-solid fa-mobile-screen" style="font-size: 4rem; margin-bottom: 20px; color: #444;"></i>
|
|
<p style="color: #999;">Paste Playlist Code Here</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<section class="bio-section">
|
|
<div class="container">
|
|
<div class="bio-layout">
|
|
<div class="bio-img-box">
|
|
<img src="https://via.placeholder.com/600x800/f3f4f6/999999?text=Field+Engineer+Photo" style="width:100%; height:100%; object-fit:cover;">
|
|
</div>
|
|
<div>
|
|
<h4 class="text-primary" style="letter-spacing: 2px; margin-bottom: 10px; font-weight:700;">MEET THE ENGINEER</h4>
|
|
<h2 style="font-size: 3rem; margin-bottom: 25px;">Experience You Can <span class="text-primary">Trust</span></h2>
|
|
<p style="color: var(--text-body); margin-bottom: 20px; font-size: 1.1rem;">
|
|
My name is Jason Garrison. I am a Field Engineer and IT Contractor with over two decades of experience in the trenches of technology.
|
|
</p>
|
|
<p style="color: var(--text-body); margin-bottom: 30px;">
|
|
I started Christ IT to provide honest, skilled labor to a world that often overcharges and under-delivers.
|
|
Whether I am terminating fiber optic cable for a commercial build-out or soldering a power jack on a laptop,
|
|
I treat every ticket with the same level of integrity. I am not a salesman; I am the guy who fixes it.
|
|
</p>
|
|
|
|
<a href="mailto:support@christit.com" class="btn">Hire Me For A Project</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div style="max-width: 400px;">
|
|
<a href="#" class="footer-logo">CHRIST IT</a>
|
|
<p>Providing secure, independent technology solutions to the Oak Grove and Clarksville communities.</p>
|
|
<p style="margin-top: 15px; color: #9ca3af; font-style: italic;">"Whatever you do, work at it with all your heart..." — Col 3:23</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 style="color: white; margin-bottom: 20px;">Contact</h4>
|
|
<p style="margin-bottom: 10px;"><i class="fa-solid fa-envelope text-accent"></i> support@christit.com</p>
|
|
<p style="margin-bottom: 10px;"><i class="fa-solid fa-map-pin text-accent"></i> Oak Grove, KY & Clarksville, TN</p>
|
|
<p><i class="fa-solid fa-clock text-accent"></i> Mon - Fri: 9:00 AM - 6:00 PM</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
© 2026 Christ IT Connections. All Rights Reserved.
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
const toggleBtn = document.getElementById('theme-toggle');
|
|
const icon = toggleBtn.querySelector('i');
|
|
const root = document.documentElement;
|
|
|
|
// Check local storage or system preference
|
|
const currentTheme = localStorage.getItem('theme') ||
|
|
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
|
|
|
|
if (currentTheme === 'dark') {
|
|
root.setAttribute('data-theme', 'dark');
|
|
icon.classList.remove('fa-moon');
|
|
icon.classList.add('fa-sun');
|
|
}
|
|
|
|
toggleBtn.addEventListener('click', () => {
|
|
const isDark = root.getAttribute('data-theme') === 'dark';
|
|
|
|
if (isDark) {
|
|
root.setAttribute('data-theme', 'light');
|
|
localStorage.setItem('theme', 'light');
|
|
icon.classList.remove('fa-sun');
|
|
icon.classList.add('fa-moon');
|
|
} else {
|
|
root.setAttribute('data-theme', 'dark');
|
|
localStorage.setItem('theme', 'dark');
|
|
icon.classList.remove('fa-moon');
|
|
icon.classList.add('fa-sun');
|
|
}
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|