basic setup

This commit is contained in:
theBreadCompany 2024-11-20 01:42:37 +01:00
commit eb001a377d
3 changed files with 82 additions and 0 deletions

19
LICENSE Normal file
View file

@ -0,0 +1,19 @@
Copyright (c) 2024 theBreadCompany
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.

7
README.md Normal file
View file

@ -0,0 +1,7 @@
# homepage
Repository for personal home page - only an image with some introduction text, nothing special.
## Disclaimer
Please mind the [LICENSE](LICENSE) file!

56
index.html Normal file
View file

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
<title>thebread.dev</title>
<style>
html {
background-image: url('https://cdn.thebread.dev/photos/.IMG_2206.JPG.webp');
font-family: "Fira sans", sans-serif;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
height: 100%;
}
body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: unset;
flex-direction: column;
text-align: center;
}
a {
color: unset;
}
.glass-text {
font-size: 5rem;
font-weight: bold;
position: relative;
color: rgba(255, 255, 255, 0.8);;
}
.glass-text::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-background-clip: text;
background-clip: text;
z-index: -1;
}
</style>
</head>
<body>
<div id="content" class="glass-text">
<h2>soon™</h1>
<h4>have a look at my <a href="cdn.thebread.dev">cdn</a></h4>
<h4>or visit my friends <a href="https://emma.pizza">Emma</a> and <a href="https://henhaa.art">Henrik</a></h4>
</div>
</body>
</html>