Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
opensas committed Apr 19, 2021
0 parents commit 2e9116a
Show file tree
Hide file tree
Showing 37 changed files with 3,165 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -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,
},
}
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
node_modules
/.svelte
/build
/functions
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.svelte/**
static/**
build/**
node_modules/**
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"useTabs": false,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"arrowParens": "avoid"
}
21 changes: 21 additions & 0 deletions Landing-Page-master/LICENSE
Original file line number Diff line number Diff line change
@@ -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.
55 changes: 55 additions & 0 deletions Landing-Page-master/README.md
Original file line number Diff line number Diff line change
@@ -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/).

![Landing Page](https://www.tailwindtoolbox.com/templates/landing-page.png)

## 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.
Binary file added Landing-Page-master/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2e9116a

Please sign in to comment.