diff --git a/.eslintrc.cjs b/.eslintrc.cjs
new file mode 100644
index 0000000..175252a
--- /dev/null
+++ b/.eslintrc.cjs
@@ -0,0 +1,20 @@
+module.exports = {
+ root: true,
+ parser: '@typescript-eslint/parser',
+ extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
+ plugins: ['svelte3', '@typescript-eslint'],
+ ignorePatterns: ['*.cjs'],
+ overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
+ settings: {
+ 'svelte3/typescript': require('typescript'),
+ },
+ parserOptions: {
+ sourceType: 'module',
+ ecmaVersion: 2019,
+ },
+ env: {
+ browser: true,
+ es2017: true,
+ node: true,
+ },
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..305d540
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+.DS_Store
+node_modules
+dist
+/.svelte
+/build
+/functions
+
+package-lock.json
+yarn.lock
+pnpm-lock.yaml
+.env
+.vercel_build_output
+.netlify
+.svelte
+.cloudflare
\ No newline at end of file
diff --git a/.npmignore b/.npmignore
new file mode 100644
index 0000000..e700210
--- /dev/null
+++ b/.npmignore
@@ -0,0 +1,5 @@
+.DS_Store
+node_modules
+/.svelte
+/build
+/functions
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..b6f27f1
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1 @@
+engine-strict=true
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..844cfd1
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,4 @@
+.svelte/**
+static/**
+build/**
+node_modules/**
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..cd8ab33
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,9 @@
+{
+ "useTabs": false,
+ "singleQuote": true,
+ "printWidth": 100,
+ "trailingComma": "es5",
+ "tabWidth": 2,
+ "semi": false,
+ "arrowParens": "avoid"
+}
diff --git a/Landing-Page-master/LICENSE b/Landing-Page-master/LICENSE
new file mode 100644
index 0000000..2e59d72
--- /dev/null
+++ b/Landing-Page-master/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2019 Tailwind Toolbox
+
+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/Landing-Page-master/README.md b/Landing-Page-master/README.md
new file mode 100644
index 0000000..b1b3ebf
--- /dev/null
+++ b/Landing-Page-master/README.md
@@ -0,0 +1,55 @@
+# [Tailwind Toolbox](https://www.tailwindtoolbox.com/) - [Landing Page Template](https://www.tailwindtoolbox.com/templates/landing-page)
+
+[Landing Page](https://www.tailwindtoolbox.com/templates/landing-page) is an open source, generic landing page template for [Tailwind CSS](https://tailwindcss.com/) created by [Tailwind Toolbox](https://www.tailwindtoolbox.com/).
+
+
+
+## Getting Started
+
+Choose one of the following options to get started:
+
+- [Download the latest release](https://github.com/tailwindtoolbox/Landing-Page/archive/master.zip)
+- Clone the repo: `git clone https://github.com/tailwindtoolbox/Landing-Page.git`
+- Fork the repo
+
+## Using the Template
+
+The template is just a HTML file using a full CDN hosted Tailwind CSS file.
+
+To get the best out of Tailwind CSS, you need to really start customising it.
+Take a look at our [setup guide](https://www.tailwindtoolbox.com/setup) to start tweaking!
+
+## Sites created using this template
+
+- [Pilotmail.io](https://pilotmail.io)
+- [Routepath.app](https://routepath.app)
+- [LedgerSight.com](https://ledgersight.com)
+- [AnonAddy.com](https://anonaddy.com)
+- [MentorCV.com](https://mentorcv.com)
+- [MakerMetrics.co](https://makermetrics.co)
+- [Nodewood.com](https://nodewood.com)
+- [X-Wing AI](https://xwing.app)
+
+## Bugs and Issues
+
+Have a bug or an issue with this template? [Open a new issue](https://github.com/tailwindtoolbox/Landing-Page/issues/new) here on GitHub.
+
+## Creator
+
+[Tailwind Toolbox](https://www.tailwindtoolbox.com/) was created by and is maintained by **[Amrit Nagi](https://amritnagi.info/)**, Co-owner of [Astrava.Solutions](https://astrava.solutions).
+
+- https://twitter.com/tailwindtoolbox
+- https://twitter.com/amritnagi
+- https://github.com/tailwindtoolbox
+
+Tailwind Toolbox is based on the [Tailwind CSS](https://www.tailwindcss.com/) framework created by [Adam Wathan](https://twitter.com/adamwathan), [Jonathan Reinink](https://twitter.com/reinink), [David Hemphill](https://twitter.com/davidhemphill) and [Steve Schoger](https://twitter.com/steveschoger)
+
+## Image Attribution
+
+[Hero vector created by freepik.com](https://www.freepik.com/free-vector/isometric-education-illustration_3940819.htm#page=1&query=isometric%20plane&position=1)
+
+Free for personal and commercial purpose with attribution
+
+## Copyright and License
+
+Copyright 2018-2020 Astrava.Solutions Ltd. Code released under the MIT license.
diff --git a/Landing-Page-master/hero.png b/Landing-Page-master/hero.png
new file mode 100644
index 0000000..bdf84e6
Binary files /dev/null and b/Landing-Page-master/hero.png differ
diff --git a/Landing-Page-master/index.html b/Landing-Page-master/index.html
new file mode 100644
index 0000000..253c65f
--- /dev/null
+++ b/Landing-Page-master/index.html
@@ -0,0 +1,1039 @@
+
+
+
+ Sub-hero message, not too long and not too short. Make it just right!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Title
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at ipsum eu nunc
+ commodo posuere et sit amet ligula.
+
+
+
+ Images from:
+
+ undraw.co
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at ipsum eu nunc
+ commodo posuere et sit amet ligula.
+
+
+ Images from:
+
+ undraw.co
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at ipsum eu nunc
+ commodo posuere et sit amet ligula.
+
+
+
+ Images from:
+
+ undraw.co
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2 Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at ipsum eu nunc
+ commodo posuere et sit amet ligula.
+
+
+ Images from:
+
+ undraw.co
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/lib/component/landing/Footer.svelte b/src/lib/component/landing/Footer.svelte
new file mode 100644
index 0000000..b402665
--- /dev/null
+++ b/src/lib/component/landing/Footer.svelte
@@ -0,0 +1,124 @@
+
+
diff --git a/src/lib/component/landing/Hero.svelte b/src/lib/component/landing/Hero.svelte
new file mode 100644
index 0000000..d2167af
--- /dev/null
+++ b/src/lib/component/landing/Hero.svelte
@@ -0,0 +1,53 @@
+
+
+
+
+
+
What business are you?
+
Main Hero Message to sell yourself!
+
+ Sub-hero message, not too long and not too short. Make it just right!
+
\ No newline at end of file
diff --git a/src/routes/$layout.svelte b/src/routes/$layout.svelte
new file mode 100644
index 0000000..2816bcf
--- /dev/null
+++ b/src/routes/$layout.svelte
@@ -0,0 +1,5 @@
+
+
+
diff --git a/src/routes/hero.png b/src/routes/hero.png
new file mode 100644
index 0000000..bdf84e6
Binary files /dev/null and b/src/routes/hero.png differ
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
new file mode 100644
index 0000000..cd2fc0d
--- /dev/null
+++ b/src/routes/index.svelte
@@ -0,0 +1,8 @@
+
+
+
+
+
diff --git a/static/hero.png b/static/hero.png
new file mode 100644
index 0000000..bdf84e6
Binary files /dev/null and b/static/hero.png differ
diff --git a/static/land/hero.png b/static/land/hero.png
new file mode 100644
index 0000000..bdf84e6
Binary files /dev/null and b/static/land/hero.png differ
diff --git a/static/land/index.html b/static/land/index.html
new file mode 100644
index 0000000..cd731d3
--- /dev/null
+++ b/static/land/index.html
@@ -0,0 +1,752 @@
+
+
+
+
+
+
+
+
+ Tailwind Starter Template - Landing Page Template: Tailwind Toolbox
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
What business are you?
+
+ Main Hero Message to sell yourself!
+
+
+ Sub-hero message, not too long and not too short. Make it just right!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Title
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at ipsum eu nunc commodo posuere et sit
+ amet ligula.
+
+
+
+ Images from:
+
+ undraw.co
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam at ipsum eu nunc commodo posuere et
+ sit amet ligula.
+
+
+ Images from:
+
+ undraw.co
+