-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (136 loc) · 5.18 KB
/
Copy pathindex.html
File metadata and controls
178 lines (136 loc) · 5.18 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Richard Breuning</title>
<!-- SEO / OpenGraph -->
<meta property="og:title" content="Richard Breuning – Technik & Automationen" />
<meta property="og:description"
content="Persönliches Portfolio mit Fokus auf Technik, Gestaltung und moderne digitale Lösungen." />
<meta property="og:image"
content="https://richardbreuning.de/assets/Share.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://richardbreuning.de/" />
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Global Styles -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- ================= NAVIGATION ================= -->
<nav class="nav fixed top-0 w-full bg-white/80 dark:bg-black/70 backdrop-blur z-40">
<div class="max-w-7xl mx-auto flex justify-between items-center px-6 py-4">
<span class="font-semibold tracking-wide">Richard Breuning</span>
<!-- DESKTOP NAV -->
<ul class="hidden md:flex gap-8 items-center">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">Über mich</a></li>
<!-- <li><a href="skills.html">Skills</a></li> -->
<li><a href="projects.html">Projekte</a></li>
<li><a href="contact.html">Kontakt</a></li>
<li><button id="darkToggle" class="nav-button">Dark</button></li>
</ul>
<!-- MOBILE CONTROLS -->
<div class="md:hidden flex items-center gap-3">
<button id="darkToggleMobile" class="p-2 text-lg">🌙</button>
<button id="menuToggle" class="p-2 text-xl">☰</button>
</div>
</div>
</nav>
<!-- ================= MOBILE MENU ================= -->
<div
id="mobileMenu"
class="hidden fixed inset-0 z-[9999]
bg-black text-white
px-6 pt-8">
<div class="flex justify-end mb-10">
<button id="menuClose" class="text-2xl text-white">✕</button>
</div>
<ul class="flex flex-col gap-6 text-xl font-medium">
<li><a href="index.html" class="text-white">Home</a></li>
<li><a href="about.html" class="text-white">Über mich</a></li>
<li><a href="skills.html" class="text-white">Skills</a></li>
<li><a href="projects.html" class="text-white">Projekte</a></li>
<li><a href="contact.html" class="text-white">Kontakt</a></li>
</ul>
<hr class="my-10 border-white/30">
<button
id="darkToggleMobileMenu"
class="flex items-center gap-3 text-lg text-white">
🌙 <span>Dark Mode</span>
</button>
</div>
<!-- ================= MAIN ================= -->
<main class="pt-32">
<!-- ================= HERO ================= -->
<section class="py-20 md:py-24 fade-in text-center">
<div class="max-w-6xl mx-auto px-6">
<img
src="assets/images/portrait.jpg"
alt="Porträt Richard Breuning"
class="mx-auto mb-10"
/>
<h1 class="text-4xl sm:text-5xl md:text-6xl font-semibold mb-6">
Willkommen auf meiner Seite
</h1>
<p class="text-base sm:text-lg mb-10">
Hier findest du persönliche Einblick in Technik, Gestaltung und das, was mich bewegt.
</p>
<div class="flex justify-center gap-6">
<a href="projects.html" class="nav-button">Projekte ansehen</a>
<a href="contact.html" class="nav-button">Kontakt aufnehmen</a>
</div>
</div>
</section>
<!-- ================= CONTENT ================= -->
<section class="py-24 fade-in">
<div class="max-w-6xl mx-auto px-6">
<!-- Linie oben -->
<hr class="border-black border-t-2 mb-4">
<!-- Überschrift -->
<h2 class="text-2xl font-semibold mb-4 text-center">
About me, in short
</h2>
<!-- Linie unten -->
<hr class="border-black border-t-2 mb-12">
<div class="grid md:grid-cols-3 gap-12">
<div class="card">
<h2 class="text-xl font-semibold mb-3">
Technisches Verständnis
</h2>
<p>
Analytisches Denken, strukturierte Arbeitsweise
und ein sicherer Umgang mit digitalen Systemen.
</p>
</div>
<div class="card">
<h2 class="text-xl font-semibold mb-3">
Gestaltung & Ästhetik
</h2>
<p>
Klare Linien, ruhige Designs und ein ausgeprägtes
Gespür für Details und Wirkung.
</p>
</div>
<div class="card">
<h2 class="text-xl font-semibold mb-3">
Moderne Technologien
</h2>
<p>
Offen für neue Tools und KI-gestützte Lösungen
mit Fokus auf sinnvolle Anwendung.
</p>
</div>
</div>
</div>
</section>
</main>
<!-- ================= FOOTER ================= -->
<footer class="text-center py-10">
© 2026 Richard Breuning
</footer>
<!-- ================= GLOBAL SCRIPT ================= -->
<script src="assets/js/main.js" defer></script>
</body>
</html>