-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconsulting.html
More file actions
178 lines (170 loc) · 9.98 KB
/
consulting.html
File metadata and controls
178 lines (170 loc) · 9.98 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
<script type="text/javascript">
var gk_isXlsx = false;
var gk_xlsxFileLookup = {};
var gk_fileData = {};
function filledCell(cell) {
return cell !== '' && cell != null;
}
function loadFileData(filename) {
if (gk_isXlsx && gk_xlsxFileLookup[filename]) {
try {
var workbook = XLSX.read(gk_fileData[filename], { type: 'base64' });
var firstSheetName = workbook.SheetNames[0];
var worksheet = workbook.Sheets[firstSheetName];
// Convert sheet to JSON to filter blank rows
var jsonData = XLSX.utils.sheet_to_json(worksheet, { header: 1, blankrows: false, defval: '' });
// Filter out blank rows (rows where all cells are empty, null, or undefined)
var filteredData = jsonData.filter(row => row.some(filledCell));
// Heuristic to find the header row by ignoring rows with fewer filled cells than the next row
var headerRowIndex = filteredData.findIndex((row, index) =>
row.filter(filledCell).length >= filteredData[index + 1]?.filter(filledCell).length
);
// Fallback
if (headerRowIndex === -1 || headerRowIndex > 25) {
headerRowIndex = 0;
}
// Convert filtered JSON back to CSV
var csv = XLSX.utils.aoa_to_sheet(filteredData.slice(headerRowIndex)); // Create a new sheet from filtered array of arrays
csv = XLSX.utils.sheet_to_csv(csv, { header: 1 });
return csv;
} catch (e) {
console.error(e);
return "";
}
}
return gk_fileData[filename] || "";
}
function toggleMenu() {
const menu = document.getElementById('menu');
const hamburgerIcon = document.getElementById('hamburger-icon');
const closeIcon = document.getElementById('close-icon');
menu.classList.toggle('hidden');
hamburgerIcon.classList.toggle('hidden');
closeIcon.classList.toggle('hidden');
}
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bearclaw Forest IT Consulting</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="bg-gray-100 text-gray-800">
<!-- Header -->
<header class="py-4 w-full sticky top-0 z-10 bg-white shadow-md">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 flex justify-between items-center">
<h1 class="text-xl font-bold pr-4 sm:pr-6">Bearclaw Forest IT</h1>
<!-- Hamburger Button (visible on mobile, fixed in top-right) -->
<button id="hamburger" class="md:hidden text-gray-800 focus:outline-none fixed top-4 right-4 z-20" onclick="toggleMenu()" aria-label="Toggle menu">
<svg id="hamburger-icon" class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
<svg id="close-icon" class="w-6 h-6 hidden" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
<!-- Menu Items -->
<nav id="menu" class="hidden md:flex md:items-center">
<ul class="flex flex-col md:flex-row md:space-x-4 space-y-4 md:space-y-0 p-6 md:p-0 bg-white md:bg-transparent absolute md:static top-16 left-0 w-full md:w-auto text-lg md:text-base">
<li><a href="#home" onclick="toggleMenu()" class="text-gray-800 hover:text-blue-300 transition duration-200">Home</a></li>
<li><a href="#about" onclick="toggleMenu()" class="text-gray-800 hover:text-blue-300 transition duration-200">About</a></li>
<li><a href="#services" onclick="toggleMenu()" class="text-gray-800 hover:text-blue-300 transition duration-200">Services</a></li>
<li><a href="#contact" onclick="toggleMenu()" class="text-gray-800 hover:text-blue-300 transition duration-200">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="bg-gradient-to-r from-blue-700 to-blue-500 text-white py-20">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl font-bold mb-4">Keep IT Stupid Simple</h2>
<p class="text-lg mb-6">Linux, Programming, IT, and AI Exploration for Small to Medium Businesses</p>
<a href="#contact" class="bg-white text-blue-900 px-6 py-3 rounded-full font-semibold hover:bg-gray-200">Get in Touch</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">About Me</h2>
<div class="max-w-3xl mx-auto text-center">
<p class="text-lg mb-4">I've worn many hats over my career starting out as a system and network administrator for a small manufacturing company. I "learned to code" through practice, professional course work, internships, and finally as a professional software engineer working in industries like aerospace, communications, and financial services. </p>
<p class="text-lg mb-4">My skills range from hardware configuration to server administration (linux and windows) to custom software development and anything in-between. I am passionate about understanding complicated systems and communicating that understanding to others. I prioritize simplicity as my gold standard. </p>
<p class="text-lg">My mission is to enable you to manage, upgrade, and improve your systems independently</p>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="bg-gray-200 py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Linux Expertise -->
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-4">Linux Expertise</h3>
<p>From cloud workloads to on-premise servers, I’ll keep your Linux systems running smoothly. Specializing in Docker and Kubernetes, I optimize performance, troubleshoot issues, and guide upgrades.</p>
</div>
<!-- Programming Solutions -->
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-4">Programming Solutions</h3>
<p>Need a quick prototype in Python or a robust app in Go or C? I handle legacy code, business logic, APIs, and simple, effective web frontends with HTML and Tailwind CSS—minus the framework bloat.</p>
</div>
<!-- IT Management -->
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-4">IT Management</h3>
<p>Comprehensive IT support for user management, CRM/MRP tools, domain administration, databases, networking, and patch management, tailored for small to medium businesses.</p>
</div>
<!-- Customer Support -->
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-4">Customer Support</h3>
<p>With experience in phone and on-site support, I deescalate issues and provide clear, actionable solutions to keep your customers happy.</p>
</div>
<!-- AI & LLM Integration -->
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-4">AI & LLM Integration</h3>
<p>Stay ahead with Large Language Models. I’ll integrate AI tools if and when it makes sense into your workflows, ensuring your business is ready for the future.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-4">Training</h3>
<p>Guidance navigating your systems, software, and network. Gain confidence in managing, creating, and leveraging technology. Computers don't have to be daunting.</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">Let’s Work Together</h2>
<div class="max-w-lg mx-auto">
<div class="bg-white p-6 rounded-lg shadow-md">
<p class="text-lg mb-4">Ready to solve your IT challenges? Reach out to discuss your needs!</p>
<p class="text-lg mb-4">Email: <a href="mailto:bearclawforestconsulting@gmail.com" class="text-blue-600 hover:underline">bearclawforestconsulting@gmail.com</a></p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-blue-900 text-white py-6">
<div class="container mx-auto px-4 text-center">
<p>© 2025 Bearclaw Forest IT Consulting. All rights reserved.</p>
</div>
</footer>
<!-- Minimal JavaScript for Smooth Scrolling -->
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>