summaryrefslogtreecommitdiff
path: root/src/pages/about.astro
blob: 507318edec3858c3a3c0e5bfcd55c61e6f075f81 (plain)
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
---
import PageLayout from "@/layouts/Base.astro";

const meta = {
	description:
		"DevOps engineer, web developer, and full-time vanlifer sharing insights from life on the road, tech tutorials, and digital nomad know-how.",
	title: "About",
};
---

<PageLayout meta={meta}>
	<h1 class="title mb-6">About</h1>
	<div class="prose prose-sm prose-cactus max-w-none">
		<p>
			Hello! I'm Dawid, a DevOps engineer, web developer, and full-time vanlifer. With over a decade
			of experience in cloud technologies and automation, I've combined my passion for technology
			with life on the road.
		</p>
		<p>
			By day, I focus on CI/CD processes, Kubernetes, and AWS serverless technologies. My toolbox
			includes GitLab CI, ArgoCD, Ansible, Terraform, and more. I've also been exploring freelance
			web development, crafting solutions with WordPress, Ghost CMS, Hugo, and Astro. As a digital
			nomad, I share insights from life on the road, tech tutorials, and practical tips for remote
			work in motion.
		</p>
		<h2>My Services</h2>
		<h3>DevOps Consulting</h3>
		<p>
			I help businesses accelerate time-to-value, enhance application performance, ensure stability,
			strengthen security measures, and elevate observability through specialized DevOps consulting
			services.
		</p>
		<ul class="list-inside list-disc" role="list">
			<li>
				<strong>CI/CD Process Design & Implementation</strong> - Specializing in GitLab CI, GitHub Actions,
				and Argo CD
			</li>
			<li>
				<strong>Cloud Migration</strong> - Transitioning to microservices architecture, Kubernetes, or
				Serverless AWS
			</li>
			<li>
				<strong>Monitoring & Observability</strong> - Using Prometheus, Grafana, ELK stack, or DataDog
			</li>
		</ul>
		<h3>Web Development, Maintenance & Hosting</h3>
		<p>
			I offer comprehensive web development services focusing on WordPress, Ghost, and Hugo
			frameworks, with flexibility for other CMS platforms.
		</p>
		<ul class="list-inside list-disc" role="list">
			<li><strong>Custom Website Development</strong> - From design to publishing</li>
			<li>
				<strong>Performance & SEO Optimization</strong> - Caching, CDNs, and metadata implementation
			</li>
			<li><strong>Hosting & Maintenance</strong> - Ongoing website care and updates</li>
		</ul>
		<h2>Core Expertise</h2>
		<ul class="list-inside list-disc" role="list">
			<li>CI/CD Pipelines and automation</li>
			<li>Kubernetes and AWS Cloud</li>
			<li>Web Development (WordPress, Ghost, Hugo, Astro)</li>
			<li>Infrastructure as Code (Terraform, Ansible)</li>
			<li>Monitoring and Observability</li>
		</ul>
		<p>
			Ready to enhance your digital infrastructure or build your next web project? Let's connect and
			discuss how I can help bring your ideas to life.
		</p>
	</div>
</PageLayout>