diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..dca25e4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+Gemfile.lock
+node_modules
+_site
+.jekyll-cache
+.DS_Store
+.ruby-lsp
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..f5e7d15
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,5 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+
+gem "jekyll"
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..a0cd66a
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,3 @@
+url: "" # the base hostname & protocol for your site, e.g. http://example.com
+baseurl: "" # the subpath of your site, e.g. /blog
+title: "" # the name of your site, e.g. ACME Corp.
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..fa0b00a
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,12 @@
+
+
+
+
+
+ {{ page.title }} - {{ site.title }}
+
+
+
+ {{ content }}
+
+
diff --git a/_sass/base.scss b/_sass/base.scss
new file mode 100644
index 0000000..126160d
--- /dev/null
+++ b/_sass/base.scss
@@ -0,0 +1,9 @@
+$backgroundColor: #ffffff;
+$bodyColor: #000000;
+$bodyFont: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
+
+body {
+ background: $backgroundColor;
+ color: $bodyColor;
+ font-family: $bodyFont;
+}
diff --git a/assets/css/main.scss b/assets/css/main.scss
new file mode 100644
index 0000000..9c288c5
--- /dev/null
+++ b/assets/css/main.scss
@@ -0,0 +1,4 @@
+---
+---
+
+@import "base";
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..82eaafb
--- /dev/null
+++ b/index.md
@@ -0,0 +1,8 @@
+---
+layout: default
+title: "Happy Jekylling!"
+---
+
+## You're ready to go!
+
+Start developing your Jekyll website.