diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..5d12634
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,13 @@
+# editorconfig.org
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.gitignore b/.gitignore
index 997c6eb..93e0503 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,23 +1,91 @@
-.DS_Store
-node_modules
-/dist
-package-lock.json
-yarn.lock
-
-# local env files
-.env.local
-.env.*.local
-
-# Log files
+# Created by .ignore support plugin (hsz.mobi)
+### Node template
+# Logs
+/logs
+*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
+yarn.lock
-# Editor directories and files
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (https://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# TypeScript v1 declaration files
+typings/
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# dotenv environment variables file
+.env
+
+# parcel-bundler cache (https://parceljs.org/)
+.cache
+
+# next.js build output
+.next
+
+# nuxt.js build output
+.nuxt
+
+# Nuxt generate
+dist
+
+# vuepress build output
+.vuepress/dist
+
+# Serverless directories
+.serverless
+
+# IDE / Editor
.idea
-.vscode
-*.suo
-*.ntvs*
-*.njsproj
-*.sln
-*.sw?
+
+# Service worker
+sw.*
+
+# macOS
+.DS_Store
+
+# Vim swap files
+*.swp
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 359c663..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2020 Meraki UI
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/src/assets/css/custom-utilities.css b/assets/css/custom-utilities.css
similarity index 99%
rename from src/assets/css/custom-utilities.css
rename to assets/css/custom-utilities.css
index 0604f90..292694e 100644
--- a/src/assets/css/custom-utilities.css
+++ b/assets/css/custom-utilities.css
@@ -17,4 +17,4 @@
::-webkit-scrollbar-thumb:hover {
background: #718096;
-}
+}
\ No newline at end of file
diff --git a/src/assets/css/app.css b/assets/css/tailwind.css
similarity index 89%
rename from src/assets/css/app.css
rename to assets/css/tailwind.css
index 20045c2..6df8f05 100644
--- a/src/assets/css/app.css
+++ b/assets/css/tailwind.css
@@ -7,4 +7,4 @@
/* @import "./custom-components.css"; */
@import "tailwindcss/utilities";
-@import "./custom-utilities.css";
+@import "./custom-utilities.css";
\ No newline at end of file
diff --git a/src/assets/merakiui-og.png b/assets/merakiui-og.png
similarity index 100%
rename from src/assets/merakiui-og.png
rename to assets/merakiui-og.png
diff --git a/src/assets/svg/Catalogue-pana.svg b/assets/svg/Catalogue-pana.svg
similarity index 100%
rename from src/assets/svg/Catalogue-pana.svg
rename to assets/svg/Catalogue-pana.svg
diff --git a/src/assets/svg/Responsive-bro.svg b/assets/svg/Responsive-bro.svg
similarity index 100%
rename from src/assets/svg/Responsive-bro.svg
rename to assets/svg/Responsive-bro.svg
diff --git a/src/assets/svg/hero-pattern.svg b/assets/svg/hero-pattern.svg
similarity index 100%
rename from src/assets/svg/hero-pattern.svg
rename to assets/svg/hero-pattern.svg
diff --git a/src/assets/svg/logo.svg b/assets/svg/logo.svg
similarity index 100%
rename from src/assets/svg/logo.svg
rename to assets/svg/logo.svg
diff --git a/src/assets/tails.jpg b/assets/tails.jpg
similarity index 100%
rename from src/assets/tails.jpg
rename to assets/tails.jpg
diff --git a/src/assets/tails_mobile.jpg b/assets/tails_mobile.jpg
similarity index 100%
rename from src/assets/tails_mobile.jpg
rename to assets/tails_mobile.jpg
diff --git a/babel.config.js b/babel.config.js
deleted file mode 100644
index ae71563..0000000
--- a/babel.config.js
+++ /dev/null
@@ -1,4 +0,0 @@
-module.exports = {
- presets: ["@vue/cli-plugin-babel/preset"],
- plugins: ["@babel/plugin-syntax-dynamic-import"],
-};
diff --git a/components/Logo.vue b/components/Logo.vue
new file mode 100644
index 0000000..b1de012
--- /dev/null
+++ b/components/Logo.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
diff --git a/components/README.md b/components/README.md
new file mode 100644
index 0000000..a079f10
--- /dev/null
+++ b/components/README.md
@@ -0,0 +1,7 @@
+# COMPONENTS
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+The components directory contains your Vue.js Components.
+
+_Nuxt.js doesn't supercharge these components._
diff --git a/layouts/default.vue b/layouts/default.vue
new file mode 100644
index 0000000..0acb4c7
--- /dev/null
+++ b/layouts/default.vue
@@ -0,0 +1,5 @@
+
+
- Beautiful Tailwindcss
- components that support RTL languages & fully responsive based on Flexbox & CSS Grid. Built by
- @khatabwedaa &
- @miaababikir
-
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Tempora expedita dicta totam aspernatur doloremque. Excepturi iste iusto eos enim reprehenderit nisi, accusamus delectus nihil quis facere in modi ratione libero!
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Molestie parturient et sem ipsum volutpat vel. Natoque sem et aliquam mauris egestas quam volutpat viverra. In pretium nec senectus erat. Et malesuada lobortis.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae dolores deserunt ea doloremque natus error, rerum quas odio quaerat nam ex commodi hic, suscipit in a veritatis pariatur minus consequuntur!
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Forms/Simple.vue b/src/components/ui/Forms/Simple.vue
deleted file mode 100644
index 2f16ba3..0000000
--- a/src/components/ui/Forms/Simple.vue
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
Account settings
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Forms/SimpleNewsletter.vue b/src/components/ui/Forms/SimpleNewsletter.vue
deleted file mode 100644
index 34bb038..0000000
--- a/src/components/ui/Forms/SimpleNewsletter.vue
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
Want to see Back in action?
-
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis, minus tempora nemo quos
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Heros/ECommerce.vue b/src/components/ui/Heros/ECommerce.vue
deleted file mode 100644
index 5806c92..0000000
--- a/src/components/ui/Heros/ECommerce.vue
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
Best Place To Choose Your Clothes
-
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Porro beatae error laborum ab amet sunt recusandae? Reiciendis natus perspiciatis optio.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Heros/WithBGImage.vue b/src/components/ui/Heros/WithBGImage.vue
deleted file mode 100644
index 847b986..0000000
--- a/src/components/ui/Heros/WithBGImage.vue
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Build Your new Saas
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Heros/WithImage.vue b/src/components/ui/Heros/WithImage.vue
deleted file mode 100644
index ac46e74..0000000
--- a/src/components/ui/Heros/WithImage.vue
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Find your premium new glasses exported from US
-
We work with the best remunated glasses dealers in US to find your new glasses.
-
-
-
-
- Premium selection
-
-
-
-
-
- Insurance
-
-
-
-
-
- All legal documents
-
-
-
-
-
- From US glasses dealers
-
-
-
-
-
- Payment Security
-
-
-
-
-
- Fast shipping (+ Express)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Heros/WithPattern.vue b/src/components/ui/Heros/WithPattern.vue
deleted file mode 100644
index 4dd646c..0000000
--- a/src/components/ui/Heros/WithPattern.vue
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Brand
-
-
- Hello Guest
-
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing.
-
-
-
-
-
-
Sign In
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Heros/WithSideImage.vue b/src/components/ui/Heros/WithSideImage.vue
deleted file mode 100644
index a92a75d..0000000
--- a/src/components/ui/Heros/WithSideImage.vue
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Build Your New Idea
-
-
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis commodi cum cupiditate ducimus, fugit harum id necessitatibus odio quam quasi, quibusdam rem tempora voluptates.
- Hi I am jane , software engineer @BakaTeam , Lorem ipsum, dolor sit amet consectetur adipisicing elit. Illum in sed non alias, fugiat, commodi nemo ut fugit corrupti dolorem sequi ex veniam consequuntur id, maiores beatae ipsa omnis aliquam?
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Sections/Feature.vue b/src/components/ui/Sections/Feature.vue
deleted file mode 100644
index 938a178..0000000
--- a/src/components/ui/Sections/Feature.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Default Taiwindcss Config
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Dignissim fusce tortor, ac sed malesuada blandit. Et mi gravida sem feugiat.
-
-
-
-
-
-
Fully Responsive Components
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Dignissim fusce tortor, ac sed malesuada blandit. Et mi gravida sem feugiat.
-
-
-
-
-
-
RTL Languages Support
-
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Dignissim fusce tortor, ac sed malesuada blandit. Et mi gravida sem feugiat.
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Sections/OurTeam.vue b/src/components/ui/Sections/OurTeam.vue
deleted file mode 100644
index 9fa7164..0000000
--- a/src/components/ui/Sections/OurTeam.vue
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
Our Team
-
-
-
-
-
-
-
-
Ahmed Omer
- CEO
-
-
-
-
-
-
-
-
Jane Doe
- Co-founder
-
-
-
-
-
-
-
-
Steve Ben
- UI/UX
-
-
-
-
-
-
-
-
Patterson Johnson
- Software Engineer
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ui/Sections/ParagraphWithImage.vue b/src/components/ui/Sections/ParagraphWithImage.vue
deleted file mode 100644
index 01b9985..0000000
--- a/src/components/ui/Sections/ParagraphWithImage.vue
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
Build Your New Idea
-
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quidem modi reprehenderit vitae exercitationem aliquid dolores ullam temporibus enim expedita aperiam mollitia iure consectetur dicta tenetur, porro consequuntur saepe accusantium consequatur.