1
0
Fork 0

remove unused files

This commit is contained in:
Michael Czechowski 2024-10-15 00:43:47 +02:00
parent 89561af151
commit 1a81996793
Signed by: nextlevelshit
GPG Key ID: 3DB96851AACDE749
7 changed files with 7 additions and 1331 deletions

View File

@ -1,17 +0,0 @@
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = false
max_line_length = 120
tab_width = 4
ij_continuation_indent_size = 8
ij_formatter_off_tag = @formatter:off
ij_formatter_on_tag = @formatter:on
ij_formatter_tags_enabled = true
ij_smart_tabs = false
ij_visual_guides =
ij_wrap_on_typing = false

1285
index.html

File diff suppressed because it is too large Load Diff

View File

@ -5,8 +5,8 @@ section#academia.bg-nls-black.text-white
.max-w-screen-md.mx-auto
// region Computer Science
h2.text-2xl.mb-4= academia.sectionTitles.computerScience
div.mb-12
div.mb-8.max-w-prose.prose(class="lg:prose-xl")
.mb-12
.mb-8.max-w-prose.prose(class="lg:prose-xl")
each paragraph in academia.intro
p= paragraph
// endregion

View File

@ -52,7 +52,7 @@ footer#footer.bg-nls-black.text-white
a(
href=footer.riskUrl,
aria-label=footer.riskAriaLabel,
title=footer.riskTitle
title=footer.riskTitle,
onclick="umami.track('easter egg clicked', { category: 'footer', position: 'footer' })"
)
img.w-12.ml-auto(src=footer.riskImgSrc, alt=footer.riskImgAlt, class="mt-[1000vh]")

View File

@ -8,13 +8,13 @@ header.bg-nls-black.text-white
| #{title.jobTitle[0]}
wbr
| & #{title.jobTitle[1]}
h1.text-lg.mt-8.opacity-90(
class="sm:text-5xl group", itemprop="email"
)
h1.text-lg.mt-8.opacity-90.group(class="sm:text-5xl", itemprop="email")
a(
onclick="umami.track('email clicked', { position: 'title' })",
onmouseover="umami.track('email hovered', { position: 'title' })",
href=footer.emailLink, rel="noopener noreferrer", itemprop="email"
href=footer.emailLink,
rel="noopener noreferrer",
itemprop="email"
)
span.whitespace-nowrap.items-center.opacity-10.transition(class="group-hover:opacity-100")
span 👋 

View File

@ -1,19 +0,0 @@
export default () => {
const sectionList: NodeListOf<HTMLElement> = document.querySelectorAll("section");
sectionList.forEach((section) => {
section.addEventListener("click", (e) => {
console.log("click", e.target);
});
section.addEventListener("touchstart", (e) => {
console.log("touchstart", e.target);
});
});
// Add event listener to the document that changes the background color successively to another color
document.addEventListener("scroll", (e) => {
const randomColor = Math.floor(Math.random() * 16777215).toString(16);
console.log("scroll", e.target, randomColor);
document.body.style.backgroundColor = `#${randomColor}`;
});
};

View File

@ -1,3 +0,0 @@
import events from "./events";
events();