diff --git a/components/CategoryDivider.vue b/components/CategoryDivider.vue
new file mode 100644
index 0000000..226b302
--- /dev/null
+++ b/components/CategoryDivider.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/components/TheCopyright.vue b/components/TheCopyright.vue
new file mode 100644
index 0000000..ef9b5ab
--- /dev/null
+++ b/components/TheCopyright.vue
@@ -0,0 +1,52 @@
+
+
+
+.c-the-copyright
+ span.c-the-copyright__name By LeCoupa
+
+ span.c-the-copyright__picture
+
+
+
+
+
+
+
+
+
diff --git a/layouts/default.vue b/layouts/default.vue
index ffbad7f..569bfe2 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -3,10 +3,16 @@
************************************************************************* -->
- .c-layout-default
- github-corner
+ .l-default
+ github-corner(
+ class="l-default__github"
+ )
nuxt
+
+ the-copyright(
+ class="l-default__copyright"
+ )
diff --git a/pages/index.vue b/pages/index.vue
index acaf0d7..71f91ae 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -4,8 +4,14 @@
.c-index
- h2(
+ img(
+ src="/images/common/logo.png"
+ srcset="/images/common/logo@2x.png"
+ class="c-index__logo"
+ )
+ p(
v-html="description"
+ class="c-index__description"
)
@@ -19,7 +25,7 @@ export default {
return {
description: `
Awesome cheatsheets for popular programming languages, frameworks and development tools.
- They include everything you should know in one single file. 🤓👌
+ They include everything you should know in one single file. 👩💻👨💻
`
};
}
@@ -30,4 +36,21 @@ export default {
STYLE
************************************************************************* -->
-
+
diff --git a/static/images/common/lecoupa.jpg b/static/images/common/lecoupa.jpg
new file mode 100644
index 0000000..ec5606e
Binary files /dev/null and b/static/images/common/lecoupa.jpg differ
diff --git a/static/images/common/logo.png b/static/images/common/logo.png
new file mode 100644
index 0000000..868f38d
Binary files /dev/null and b/static/images/common/logo.png differ
diff --git a/static/images/common/logo@2x.png b/static/images/common/logo@2x.png
new file mode 100644
index 0000000..fdc823e
Binary files /dev/null and b/static/images/common/logo@2x.png differ