First Commit - Portfolio Page
This commit is contained in:
+72
@@ -0,0 +1,72 @@
|
||||
<!doctype html>
|
||||
<html lang="de" class="bg-zinc-900">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/png" href="/logo.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="Damjan Savić - JTL Integration Expert & Digital Solutions Consultant. Spezialisiert auf E-Commerce und digitale Transformation." />
|
||||
<meta name="keywords" content="JTL, E-Commerce, Integration, Digital Solutions, Consulting" />
|
||||
<meta name="author" content="Damjan Savić" />
|
||||
<meta name="theme-color" content="#18181B" />
|
||||
<title>Damjan Savić - JTL Integration Expert</title>
|
||||
|
||||
<!-- Critical Styles -->
|
||||
<style>
|
||||
/* Sofortiges Setzen der dunklen Farben */
|
||||
:root {
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
background-color: #18181B !important;
|
||||
}
|
||||
|
||||
html {
|
||||
overflow-y: scroll;
|
||||
scrollbar-width: none;
|
||||
-ms-overflow-style: none;
|
||||
}
|
||||
|
||||
html::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-right: 0 !important;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#root {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: #18181B;
|
||||
}
|
||||
|
||||
/* Verhindert weißes Aufblitzen */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html, body, #root {
|
||||
background-color: #18181B;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-N0PZBL7X18"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-N0PZBL7X18');
|
||||
</script>
|
||||
|
||||
<!-- Preload wichtiger Assets -->
|
||||
<link rel="preload" href="/logo.png" as="image" />
|
||||
</head>
|
||||
<body class="bg-zinc-900">
|
||||
<div id="root" class="bg-zinc-900"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user