diff --git a/src/App.tsx b/src/App.tsx
index 832f7f4..3604fac 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,12 +1,14 @@
import "@styles/App.scss";
import Header from "@components/Header";
+import About from "@components/About";
export default function App() {
return (
+
-
Website under construction 🚧👷
+ Website under construction 🚧👷
);
diff --git a/src/components/About.tsx b/src/components/About.tsx
index ef9b82a..1fc66b8 100644
--- a/src/components/About.tsx
+++ b/src/components/About.tsx
@@ -1,3 +1,45 @@
+import "@styles/About.scss";
+
export default function About() {
- return About
;
+ return (
+
+
Hey there, I'm
+
Janis Meister
+
+
Software Developer.
+
With an interest for modern technology.
+
+
+ );
}
diff --git a/src/styles/About.scss b/src/styles/About.scss
new file mode 100644
index 0000000..f2cd28a
--- /dev/null
+++ b/src/styles/About.scss
@@ -0,0 +1,36 @@
+.about {
+ padding: 5rem 10rem;
+ .greeting {
+ color: var(--color-accent);
+ }
+ .interest {
+ color: var(--color-font-muted);
+ }
+
+ .social-links {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ margin-top: 2rem;
+ gap: 2rem;
+ a {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 5px;
+ color: var(--color-font);
+ text-decoration: none;
+ font-size: 1.2rem;
+ font-weight: 500;
+ border-radius: 5px;
+ padding: 10px 15px;
+ background-color: #1d1d1d;
+ transition: all 50ms ease-in-out;
+ border: 2px solid transparent;
+ &:hover {
+ background-color: #2d2d2d;
+ border-color: var(--color-accent);
+ }
+ }
+ }
+}
diff --git a/src/styles/index.scss b/src/styles/index.scss
index 4a0230e..f6e431c 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -25,6 +25,21 @@ html {
scroll-behavior: smooth;
}
+h1 {
+ font-size: 8rem;
+ font-weight: 700;
+}
+
+h2 {
+ font-size: 4rem;
+ font-weight: 700;
+}
+
+h3 {
+ font-size: 2rem;
+ font-weight: 700;
+}
+
body,
#root {
display: flex;
diff --git a/src/styles/variables_colors.scss b/src/styles/variables_colors.scss
index b616ec8..3751229 100644
--- a/src/styles/variables_colors.scss
+++ b/src/styles/variables_colors.scss
@@ -6,6 +6,7 @@
--color-background-sidebar: #1a1a1a;
--color-font: #ffffff;
+ --color-font-muted: #a0a0a0;
--color-border: #1c1c1c;