feat: switch to nextjs (#7)

* feat: switch to nextjs

* chore: move everyting to main dir

* fix: blogpostgen

* chore: dot?

* chore: remove blogposts

* fix: everything

* chore: why

* chore: move to public

* chore: fetch

* chore: remove slash

* chore: aedfa

* feat: defenitive nextjs move
This commit is contained in:
2023-11-17 19:29:30 +01:00
committed by GitHub
parent fd1f6c9f15
commit da0982b5ff
50 changed files with 2928 additions and 1985 deletions

24
src/app/_css/BlogPost.css Normal file
View File

@@ -0,0 +1,24 @@
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
.blogPostContent {
margin-top: 100px;
z-index: 0;
padding: 0 20vw 0 20vw;
line-height: 2;
}
code .codeHighlighter {
font-family: var(--font-mono);
}
@media (max-width: 900px) {
.blogPostContent {
padding: 0;
}
}
@media (prefers-color-scheme: light) {
.codeHighlighter {
background-color: #FFF;
}
}