diff --git a/layouts/partials/header/header-typewriter.html b/layouts/partials/header/header-typewriter.html
new file mode 100644
index 0000000..53d247c
--- /dev/null
+++ b/layouts/partials/header/header-typewriter.html
@@ -0,0 +1,30 @@
+{{ if $.Params.header }}
+ {{ range $.Params.header }}
+ {{ if eq .type "typewriter" }}
+
+ {{ $header := . }}
+ {{ if .title }}
+ {{ range .title }}
+
+ {{ . }}
+
+ {{ end }}
+ {{ end }}
+ {{ if .spaceBetweenTitleTyping }}
+
+ {{ end }}
+ {{/*
+ {{ end }}
+ {{ end }}
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/header/site-header.html b/layouts/partials/header/site-header.html
index 9ca125c..67f352e 100644
--- a/layouts/partials/header/site-header.html
+++ b/layouts/partials/header/site-header.html
@@ -6,6 +6,8 @@
{{ partial "header/header-img" . }}
{{ else if and ($.Param "homeHeaderType") (eq ($.Param "homeHeaderType") "text") }}
{{ partial "header/header-text" . }}
+ {{ else if and ($.Param "homeHeaderType") (eq ($.Param "homeHeaderType") "typewriter") }}
+ {{ partial "header/header-typewriter" . }}
{{ else }}
{{ partial "header/custom-header" . }}
{{ end }}