diff --git a/content/about.md b/content/about.md
new file mode 100644
index 0000000..a672806
--- /dev/null
+++ b/content/about.md
@@ -0,0 +1,9 @@
++++
+title = "About"
+date = "2023-09-30"
+author = "Hayri"
++++
+
+# Hi there...
+
+... I am glad that you found that page. I wish you pleasant day!
diff --git a/content/archive.md b/content/archive.md
new file mode 100644
index 0000000..68c3b18
--- /dev/null
+++ b/content/archive.md
@@ -0,0 +1,6 @@
++++
+title = "Archive"
+layout = "list"
+url = "/archive"
+type = "archive"
++++
diff --git a/content/post/hello.md b/content/post/hello.md
new file mode 100644
index 0000000..0bfb279
--- /dev/null
+++ b/content/post/hello.md
@@ -0,0 +1,21 @@
++++
+title = "Hello Friend"
+date = "1986-09-17"
+author = "Elliot"
+cover = "img/hello.jpg"
+description = "\"Hello, friend?\" That's lame. Maybe I should give you a name?"
++++
+
+> "Hello, friend?" That's lame.
+> Maybe I should give you a name...
+> But that's a slippery slope.
+> You're only in my head.
+> We have to remember that...
+> Shit.
+> It's actually happened.
+> I'm talking to an imaginary person.
+>
+> **— Mr. Robot S01E01**
+
+
+
diff --git a/content/projects/_index.md b/content/projects/_index.md
new file mode 100644
index 0000000..58394c7
--- /dev/null
+++ b/content/projects/_index.md
@@ -0,0 +1,5 @@
+---
+title: "Projects"
+date: 2023-08-17T23:20:34+02:00
+draft: false
+---
\ No newline at end of file
diff --git a/content/showcase.md b/content/showcase.md
new file mode 100644
index 0000000..2fa96a6
--- /dev/null
+++ b/content/showcase.md
@@ -0,0 +1,84 @@
+---
+title: "Showcase"
+date: "2019-01-18"
+author: "Lorem Ipsum"
+---
+
+## Header 2
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec interdum metus. Aenean rutrum ligula sodales ex auctor, sed tempus dui mollis. Curabitur ipsum dui, aliquet nec commodo at, tristique eget ante. **Donec quis dolor nec nunc mollis interdum vel in purus**. Sed vitae leo scelerisque, sollicitudin elit sed, congue ante. In augue nisl, vestibulum commodo est a, tristique porttitor est. Proin laoreet iaculis ornare. Nullam ut neque quam.
+
+> Fusce pharetra suscipit orci nec tempor. Quisque vitae sem sit amet sem mollis consequat. Sed at imperdiet lorem. Vestibulum pharetra faucibus odio, ac feugiat tellus sollicitudin at. Pellentesque varius tristique mi imperdiet dapibus. Duis orci odio, sodales lacinia venenatis sit amet, feugiat et diam.
+
+### Header 3
+
+Nulla libero turpis, lacinia vitae cursus ut, auctor dictum nisl. Fusce varius felis nec sem ullamcorper, at convallis nisi vestibulum. Duis risus odio, porta sit amet placerat mollis, tincidunt non mauris. Suspendisse fringilla, `odio a dignissim pharetra`, est urna sollicitudin urna, eu scelerisque magna ex vitae tellus.
+
+```css
+/* PostCSS code */
+
+pre {
+ background: #1a1a1d;
+ padding: 20px;
+ border-radius: 8px;
+ font-size: 1rem;
+ overflow: auto;
+
+ @media ($phone) {
+ white-space: pre-wrap;
+ word-wrap: break-word;
+ }
+
+ code {
+ background: none !important;
+ color: #ccc;
+ padding: 0;
+ font-size: inherit;
+ }
+}
+```
+
+```js
+// JS code
+
+const menuTrigger = document.querySelector('.menu-trigger')
+const menu = document.querySelector('.menu')
+const mobileQuery = getComputedStyle(document.body).getPropertyValue('--phoneWidth')
+const isMobile = () => window.matchMedia(mobileQuery).matches
+const isMobileMenu = () => {
+ menuTrigger.classList.toggle('hidden', !isMobile())
+ menu.classList.toggle('hidden', isMobile())
+}
+
+isMobileMenu()
+
+menuTrigger.addEventListener('click', () => menu.classList.toggle('hidden'))
+
+window.addEventListener('resize', isMobileMenu)
+```
+
+```html
+
+
+{{ .Title }}
+ {{ range .Pages }}
+ {{ .Render "summary"}}
+ {{ end }}
+