diff --git a/css/default.css b/css/default.css
new file mode 100644
index 0000000..36edc12
--- /dev/null
+++ b/css/default.css
@@ -0,0 +1,35 @@
+html, body {
+ font-size: 16px;
+ font-family: monospace;
+ background: #000000;
+ color: #00FF66;
+ line-height: 1.25;
+}
+
+a {
+ color: #ACFFBD;
+ text-decoration: none;
+ font-weight: bold;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+header {
+ text-align: center;
+}
+
+footer {
+ text-align: center;
+}
+
+#code {
+ background: #1c1c1c;
+ color: #FF8C00;
+}
+
+#block {
+ margin: auto;
+ max-width: 640px;
+}
diff --git a/haunt.scm b/haunt.scm
new file mode 100644
index 0000000..32f66dd
--- /dev/null
+++ b/haunt.scm
@@ -0,0 +1,106 @@
+;;; -*- coding: utf-8 -*-
+;;;
+;;; This program is free software; you can redistribute it and/or
+;;; modify it under the terms of the GNU General Public License as
+;;; published by the Free Software Foundation; either version 3 of the
+;;; License, or (at your option) any later version.
+;;;
+;;; This program is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with this program. If not, see
+;;; .
+
+(use-modules (haunt builder blog)
+ (haunt builder assets)
+ (haunt post)
+ (haunt site)
+ (haunt config)
+ (useful))
+
+;; Static "Home"
+(define home-page
+ (static-page
+ "Home"
+ "index.html"
+ `(,(centered-image "images/mainframe_256x256.gif"))))
+
+;; Static "About" page
+(define about-page
+ (static-page
+ "About"
+ "about.html"
+ `((h1 "About")
+ (p "This is the personal website of Cristian Cezar Moisés."
+ " I am a student. (Pronouns: "
+ (i "he, him, his")
+ ").")
+ ,(centered-image "images/profile.png")
+ (p "Learning about cybersec,infosec and hacking."
+ "Information Security Graduate"
+ ,(link* "Ftec"
+ "https://www.ftec.com.br/")
+ ". My research focused on the "
+ "Linux Servers Security."
+ "I'm a free software enthusiast.")
+ (br)
+ (p " I like code and i like to mix many projects like threejs + react "
+ "Check my awesome interactive portfolio "
+ ,(link* "here"
+ "https://live-one.vercel.app")
+ ". Outside of work, I'm a computerphile — "
+ "I enjoy learning about and using programming languages "
+ ".This "
+ "site was written in the LISP dialect Scheme (GNU Guile, version "
+ ,(version)
+ ") and built with the Haunt library (version "
+ ,%haunt-version
+ ") on "
+ ,(strftime "%c" (localtime (current-time)))
+ ". The source code can be found on "
+ ,(link* "GitHub"
+ "https://github.com/cristiancmoises/hauntweb")
+ ". Check my YouTube channel "
+ ,(link* "SecurityOps" "https://youtube.com/@securityops")
+ "."))))
+
+(define not-found
+ (static-page
+ "404"
+ "404.html"
+ `((h1 "404 Page Not Found")
+ (p "Unfortunately the page you've tried to access doesn't exist!")
+ (br)
+ (h2 "Return "
+ ,(link* "Home"
+ "https://cristiancmoises.github.io")
+ "?"))))
+
+;; Collection of miscellaneous posts
+(define %misc
+ `(("Recent Posts" "misc.html" ,misc-posts)))
+
+;; Collection of research-related posts
+(define %research
+ `(("Published Work" "research.html" ,research-posts)))
+
+;; Build site
+(site #:title
+ "C.C.M. Homepage"
+ #:domain
+ "cristiancmoises.github.io"
+ #:default-metadata
+ '((author . "Cristian Cezar Moisés"))
+ #:readers
+ (list commonmark-reader*)
+ #:builders
+ (list (blog #:theme default-theme #:collections %misc)
+ (blog #:theme default-theme #:collections %research)
+ home-page
+ about-page
+ not-found
+ (static-directory "css")
+ (static-directory "images")))
diff --git a/images/galaxy_256x256.png b/images/galaxy_256x256.png
new file mode 100644
index 0000000..8234ce1
Binary files /dev/null and b/images/galaxy_256x256.png differ
diff --git a/images/github_profile.png b/images/github_profile.png
new file mode 100644
index 0000000..127bd91
Binary files /dev/null and b/images/github_profile.png differ
diff --git a/images/logo_256x256.gif b/images/logo_256x256.gif
new file mode 100644
index 0000000..3dd9385
Binary files /dev/null and b/images/logo_256x256.gif differ
diff --git a/images/mainframe_256x256.gif b/images/mainframe_256x256.gif
new file mode 100644
index 0000000..3fa55f1
Binary files /dev/null and b/images/mainframe_256x256.gif differ
diff --git a/images/profile.png b/images/profile.png
new file mode 100644
index 0000000..f85c673
Binary files /dev/null and b/images/profile.png differ
diff --git a/images/using_RFE.png b/images/using_RFE.png
new file mode 100644
index 0000000..5cbaa53
Binary files /dev/null and b/images/using_RFE.png differ
diff --git a/posts/fasteros.md b/posts/fasteros.md
new file mode 100644
index 0000000..eeac2a6
--- /dev/null
+++ b/posts/fasteros.md
@@ -0,0 +1,15 @@
+title: Faster⚡OS
+date: 2024-02-12 19:00
+tags: research
+summary: My Web Operating System
+---
+Web Operating System
+---
+### Free.
+A web operating system for you!
+
+### Easy.
+Just click [here](https://fasteros.vercel.app) and visit now.
+
+### Nice.
+All files are running on your local computer. Convert, play music, and more with this.
diff --git a/posts/guix.md b/posts/guix.md
new file mode 100644
index 0000000..69ffa10
--- /dev/null
+++ b/posts/guix.md
@@ -0,0 +1,16 @@
+title: Ok. That's All
+date: 2024-02-12 19:00
+tags: misc
+summary: Guix - The best!
+---
+Why Guix?..."
+---
+### Liberating.
+Guix is a distribution of the GNU operating system developed by the GNU Project—which respects the freedom of computer users.
+
+### Dependable.
+Guix supports transactional upgrades and roll-backs, unprivileged package management, and more. When used as a standalone distribution, Guix supports declarative system configuration for transparent and reproducible operating systems.
+
+### Hackable.
+It provides Guile Scheme APIs, including high-level embedded domain-specific languages (EDSLs) to define packages and whole-system configurations.
+
diff --git a/site/404.html b/site/404.html
new file mode 100644
index 0000000..9901708
--- /dev/null
+++ b/site/404.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/site/about.html b/site/about.html
new file mode 100644
index 0000000..d43b968
--- /dev/null
+++ b/site/about.html
@@ -0,0 +1 @@
+About — C.C.M. Homepage
This is the personal website of Cristian Cezar Moisés. I am a student. (Pronouns: he, him, his).
Learning about cybersec,infosec and hacking.Information Security Graduate[Ftec]. My research focused on the Linux Servers Security.I'm a free software enthusiast.
I like code and i like to mix many projects like threejs + react Check my awesome interactive portfolio [here]. Outside of work, I'm a computerphile — I enjoy learning about and using programming languages .This site was written in the LISP dialect Scheme (GNU Guile, version 3.0.9) and built with the Haunt library (version 0.2.6) on Mon 12 Feb 2024 10:40:07 PM -03. The source code can be found on [GitHub]. Check my YouTube channel [SecurityOps].
\ No newline at end of file
diff --git a/site/misc.html b/site/misc.html
new file mode 100644
index 0000000..6a4130f
--- /dev/null
+++ b/site/misc.html
@@ -0,0 +1 @@
+Recent Posts — C.C.M. Homepage
\ No newline at end of file
diff --git a/site/ok-thats-all.html b/site/ok-thats-all.html
new file mode 100644
index 0000000..5de74a9
--- /dev/null
+++ b/site/ok-thats-all.html
@@ -0,0 +1 @@
+Ok. That's All — C.C.M. Homepage
Guix is a distribution of the GNU operating system developed by the GNU Project—which respects the freedom of computer users.
Dependable.
Guix supports transactional upgrades and roll-backs, unprivileged package management, and more. When used as a standalone distribution, Guix supports declarative system configuration for transparent and reproducible operating systems.
Hackable.
It provides Guile Scheme APIs, including high-level embedded domain-specific languages (EDSLs) to define packages and whole-system configurations.
\ No newline at end of file
diff --git a/site/research.html b/site/research.html
new file mode 100644
index 0000000..d09f23f
--- /dev/null
+++ b/site/research.html
@@ -0,0 +1 @@
+Published Work — C.C.M. Homepage