diff --git a/prototype/src/main/resources/templates/about.html b/prototype/src/main/resources/templates/about.html
new file mode 100644
index 0000000..d41e2a6
--- /dev/null
+++ b/prototype/src/main/resources/templates/about.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
+<head>
+    <meta charset="UTF-8">
+    <title>e-commerce</title>
+    <link href="../static/css/ecom.css" rel="stylesheet" th:href="@{/css/ecom.css}"/>
+</head>
+<body>
+    <nav th:replace="fragments/header :: header">Header</nav>
+    <main class='hero'>
+        <div class='content-width'>
+            <h1>Über uns</h1>
+            <div>
+            </div>
+        </div>
+        <div class="vertical-spacer s"></div>
+    </main>
+    <footer th:replace="fragments/footer :: footer"></footer>
+</body>
+</html>
diff --git a/prototype/src/main/resources/templates/privacy.html b/prototype/src/main/resources/templates/privacy.html
new file mode 100644
index 0000000..41e5f9e
--- /dev/null
+++ b/prototype/src/main/resources/templates/privacy.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
+<head>
+    <meta charset="UTF-8">
+    <title>e-commerce</title>
+    <link href="../static/css/ecom.css" rel="stylesheet" th:href="@{/css/ecom.css}"/>
+</head>
+<body>
+    <nav th:replace="fragments/header :: header">Header</nav>
+    <main class='hero'>
+        <div class='content-width'>
+            <h1>Datenschutzerklärung</h1>
+            <div>
+            </div>
+        </div>
+        <div class="vertical-spacer s"></div>
+    </main>
+    <footer th:replace="fragments/footer :: footer"></footer>
+</body>
+</html>
diff --git a/prototype/src/main/resources/templates/terms.html b/prototype/src/main/resources/templates/terms.html
new file mode 100644
index 0000000..0df06db
--- /dev/null
+++ b/prototype/src/main/resources/templates/terms.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
+<head>
+    <meta charset="UTF-8">
+    <title>e-commerce</title>
+    <link href="../static/css/ecom.css" rel="stylesheet" th:href="@{/css/ecom.css}"/>
+</head>
+<body>
+    <nav th:replace="fragments/header :: header">Header</nav>
+    <main class='hero'>
+        <div class='content-width'>
+            <h1>Allgemeine Geschäftsbedingungen</h1>
+            <div>
+            </div>
+        </div>
+        <div class="vertical-spacer s"></div>
+    </main>
+    <footer th:replace="fragments/footer :: footer"></footer>
+</body>
+</html>