-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (64 loc) · 1.83 KB
/
Copy pathindex.html
File metadata and controls
74 lines (64 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>X-Ample Development | Danny Pilkington</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<canvas id="bg"></canvas>
<header class="hero">
<div class="content">
<div class="tag">Founder • Developer • Builder</div>
<h1>
BUILDING SOFTWARE<br>
THAT ACTUALLY<br>
<span>MATTERS</span>
</h1>
<p>
I’m Danny Pilkington, founder of X-Ample Development.
I build systems, apps, and automation tools that solve real business problems.
</p>
<div class="buttons">
<a href="#work">View Work</a>
<a class="secondary" href="#contact">Start a Project</a>
</div>
<div class="stats">
<div><span>10+</span><p>Years Building</p></div>
<div><span>50+</span><p>Projects</p></div>
<div><span>∞</span><p>Problems Solved</p></div>
</div>
</div>
</header>
<section id="about">
<h2>About Me</h2>
<p>
I don’t build software for the sake of it. I build tools that remove friction,
automate processes, and help businesses move faster.
</p>
</section>
<section id="work">
<h2>What I Build</h2>
<div class="grid">
<div class="card">Web Applications</div>
<div class="card">Mobile Apps</div>
<div class="card">Automation Systems</div>
<div class="card">Business Platforms</div>
</div>
</section>
<section id="projects">
<h2>GitHub Projects</h2>
<div id="repos">Loading projects...</div>
</section>
<section id="contact">
<h2>Let’s Build Something</h2>
<p>Got an idea? Let’s turn it into a product.</p>
<a href="mailto:hello@xampledevelopment.co.uk">Contact Me</a>
</section>
<footer>
<p>X-Ample Development © 2026</p>
</footer>
<script src="script.js"></script>
</body>
</html>