diff --git a/components/TableHead.vue b/components/TableHead.vue
new file mode 100644
index 0000000..aff3ed2
--- /dev/null
+++ b/components/TableHead.vue
@@ -0,0 +1,128 @@
+
+ tr.tableHead(:class="active")
+ th.tableHead--title {{title}}
+ th.tableHead--description {{desc}}
+ th.tableHead--links {{url}}
+
+
+
+
+
+
diff --git a/components/TableRow.vue b/components/TableRow.vue
new file mode 100644
index 0000000..a4264ba
--- /dev/null
+++ b/components/TableRow.vue
@@ -0,0 +1,133 @@
+
+ tr.tableRow(:class="active")
+ td.tableRow--title {{title}}
+ td.tableRow--description {{desc}}
+ td.tableRow--links
+ tr
+ td
+ a.tableRow--reference(@click='createCopyUrl') Copy
+ td
+ a.tableRow--target(:href="url" :target='title' rel='noreferrer') Open
+
+
+
+
+
+