diff --git a/mockups/base.html b/mockups/base.html
index adcd82b9..b7da0aae 100644
--- a/mockups/base.html
+++ b/mockups/base.html
@@ -19,6 +19,13 @@
+
-
diff --git a/mockups/sketches.html b/mockups/sketches.html
new file mode 100644
index 00000000..fee44171
--- /dev/null
+++ b/mockups/sketches.html
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+
+
+
+ {% for s in sketches %}
+
+ {% endfor %}
+
+
+{% endblock %}
diff --git a/mockups/sketches.yml b/mockups/sketches.yml
new file mode 100644
index 00000000..ad274f13
--- /dev/null
+++ b/mockups/sketches.yml
@@ -0,0 +1,38 @@
+sketches:
+ - id: 20
+ title: Big Circle
+ author: Anand Chitipothu
+ - id: 19
+ title: Small Circle
+ author: Anand Chitipothu
+ - id: 18
+ title: Circles in Queue
+ author: Chaitanya
+ - id: 17
+ title: Random Bottom Circles
+ author: Anand Chitipothu
+ - id: 16
+ title: Pipes
+ author: Vishal
+ - id: 15
+ title: New Sketch
+ author: Malleshwari
+
+ - id: 20
+ title: Big Circle
+ author: Anand Chitipothu
+ - id: 19
+ title: Small Circle
+ author: Anand Chitipothu
+ - id: 18
+ title: Circles in Queue
+ author: Chaitanya
+ - id: 17
+ title: Random Bottom Circles
+ author: Anand Chitipothu
+ - id: 16
+ title: Pipes
+ author: Vishal
+ - id: 15
+ title: New Sketch
+ author: Malleshwari
diff --git a/mockups/static/style.css b/mockups/static/style.css
index 26321a4f..f2178eae 100644
--- a/mockups/static/style.css
+++ b/mockups/static/style.css
@@ -198,3 +198,24 @@ img.profile-photo {
max-width: 100%
}
+.sketches-gallery svg {
+ width: 200px;
+ height: 200px;
+}
+
+.sketch-card {
+ background: white;
+ border-radius: 10px;
+ border: 1px solid #ddd;
+
+ margin: 10px;
+}
+
+.sketch-card .sketch-image {
+ padding: 10px;
+}
+
+.sketch-footer {
+ padding: 10px;
+ background: #eee;
+}