diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..5648ec12 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +# For more information about the configurations used +# in this file, please see GitHub's documentation. +# https://github.com/blog/2392-introducing-code-owners + +* @excalith \ No newline at end of file diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 707889ca..f91e24e5 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -28,7 +28,7 @@ Before creating bug reports, please perform a [cursory search on issues](https:/ To report a new issue, please follow these steps: -- **Use a clear and descriptive title** for the issue to identify the problem after the prefix of `[BUG]` +- **Use a clear and descriptive title** for the issue to identify the problem after the prefix (ie. `[BUG] Page Freezes Upon Returning`) - Use the **bug report template** and **fill out** the required fields. - **Describe the exact steps which reproduce the problem** in as many details as possible. For example, start by explaining how you started the app, e.g. which command exactly you used in the terminal. When listing steps, **don't just say what you did, but explain how you did it**. - Explain the **expected behaviour** diff --git a/src/components/Section.js b/src/components/Section.js index e227c660..2fde0544 100644 --- a/src/components/Section.js +++ b/src/components/Section.js @@ -1,8 +1,9 @@ import Link from "@/components/Link" const Section = ({ section, filter }) => { + const alignment = section.align || "left" return ( -
+

{section.title}

diff --git a/src/styles/globals.css b/src/styles/globals.css index 283fba1c..9af212fb 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -46,10 +46,6 @@ body { font-family: "Fira Code", monospace; } -h1 { - font-size: 20px; -} - a, a:active, a:visited { @@ -85,6 +81,10 @@ a:hover { text-shadow: 0px 0px 10px; } +.align-left { text-align: left; } +.align-center { text-align: center; } +.align-right { text-align: right; } + .ace_editor, .ace_gutter { background-color: var(--window-color) !important; diff --git a/startpage.config.js b/startpage.config.js index b55b3219..1cc58c0d 100644 --- a/startpage.config.js +++ b/startpage.config.js @@ -90,6 +90,7 @@ const defaultConfig = { { title: "General", color: "green", + align: "left", links: [ { name: "Portfolio", @@ -116,6 +117,7 @@ const defaultConfig = { { title: "Dev", color: "magenta", + align: "left", links: [ { name: "GitHub", @@ -142,6 +144,7 @@ const defaultConfig = { { title: "Social", color: "violet", + align: "left", links: [ { name: "Twitter", @@ -168,6 +171,7 @@ const defaultConfig = { { title: "Gaming", color: "cyan", + align: "left", links: [ { name: "Polygon", @@ -194,6 +198,7 @@ const defaultConfig = { { title: "Science", color: "blue", + align: "left", links: [ { name: "PopSci", @@ -220,6 +225,7 @@ const defaultConfig = { { title: "Tech", color: "yellow", + align: "left", links: [ { name: "TechCrunch",