Skip to content

Commit 7d24cef

Browse files
committed
first commit
0 parents  commit 7d24cef

File tree

152 files changed

+9238
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+9238
-0
lines changed

.eslintignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

.eslintrc.cjs

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/** @type { import("eslint").Linter.Config } */
2+
module.exports = {
3+
root: true,
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:svelte/recommended',
8+
'prettier'
9+
],
10+
parser: '@typescript-eslint/parser',
11+
plugins: ['@typescript-eslint'],
12+
parserOptions: {
13+
sourceType: 'module',
14+
ecmaVersion: 2020,
15+
extraFileExtensions: ['.svelte']
16+
},
17+
env: {
18+
browser: true,
19+
es2017: true,
20+
node: true
21+
},
22+
overrides: [
23+
{
24+
files: ['*.svelte'],
25+
parser: 'svelte-eslint-parser',
26+
parserOptions: {
27+
parser: '@typescript-eslint/parser'
28+
}
29+
}
30+
]
31+
};

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
vite.config.js.timestamp-*
10+
vite.config.ts.timestamp-*

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore files for PNPM, NPM and YARN
2+
pnpm-lock.yaml
3+
package-lock.json
4+
yarn.lock

.prettierrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"useTabs": true,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 100,
6+
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
7+
"overrides": [
8+
{
9+
"files": "*.svelte",
10+
"options": {
11+
"parser": "svelte"
12+
}
13+
}
14+
]
15+
}

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"files.exclude": {
3+
"**/.git": true,
4+
"**/.svn": true,
5+
"**/.hg": true,
6+
"**/CVS": true,
7+
"**/.DS_Store": true,
8+
"**/Thumbs.db": true
9+
},
10+
"hide-files.files": []
11+
}

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
### [0.1.2](https://github.com/themesberg/flowbite-svelte-admin-dashboard/compare/v0.1.1...v0.1.2) (2024-02-09)
6+
7+
### [0.1.1](https://github.com/themesberg/flowbite-svelte-admin-dashboard/compare/v0.0.3...v0.1.1) (2024-02-09)
8+
9+
### Features
10+
11+
- add FUNDING ([b9ad98a](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/b9ad98a4f3cd742e4fa43939ea07bd0b384401e8))
12+
- add GitHub funding button to README ([7e25610](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/7e2561060e121b913640c9784c6a5f528cef38b5))
13+
14+
### Bug Fixes
15+
16+
- pricing page layout ([#35](https://github.com/themesberg/flowbite-svelte-admin-dashboard/issues/35)) ([65b8ccd](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/65b8ccd7be2714c11067cd1665558214eb3b4ccc))
17+
- remove sponsor button ([81cec26](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/81cec267ea7097aafe01fe62b0e11ca1cd92b7d0))
18+
- Signin component ([679dea1](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/679dea1e3b0cc3444b01268551d28cbe271561ba))
19+
- update dependencies to the latest ([c3a36a7](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/c3a36a75a36dfbc85fe5c5d65b6dc3f0489f2997))
20+
21+
### [0.0.3](https://github.com/themesberg/flowbite-svelte-admin-dashboard/compare/v0.0.2...v0.0.3) (2023-01-27)
22+
23+
### Features
24+
25+
- add data ([8f06d15](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/8f06d1562ff806d65b767001dc54b660ed393a35))
26+
- ForgotPassword and ResetPassword component ([a13d635](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/a13d635869866c81df78277e2d1c9158109c7d2f))
27+
- Maintenance, ServerError, NotFound components ([3f07b52](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/3f07b52bf6f89c7d299d5757f18a970be3a8ff3e))
28+
- ProfileLock, NotFound component ([222c02d](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/222c02d9ec71bf8d0bace33192504277b54b73cc))
29+
30+
### 0.0.2 (2023-01-26)
31+
32+
### Features
33+
34+
- add sign-in test ([820d720](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/820d7209aae9d6167b4423afdfdd719c2f5b7699))
35+
- add SignIn component ([6d13485](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/6d134850924ed2d90fbe3cb9d13015d504c0e9ae))
36+
- add SignUp component and sign-up page, and test ([5e2e330](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/5e2e330f1babd773d3d56f501fe848286aba2ab3))
37+
38+
### Bug Fixes
39+
40+
- add @sveltejs/package ([c8c5d2e](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/c8c5d2e605e92f0dc48d9dff9109a6473033d762))
41+
- package.json, SignIn, SignUp component ([ad06e6d](https://github.com/themesberg/flowbite-svelte-admin-dashboard/commit/ad06e6d0873c68ba883ec0565784b713df3ce05f))

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Themesberg
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# [🚧 Flowbite Svelte Admin Dashboard 🚧 ](https://flowbite-admin-dashboard.vercel.app) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/intent/tweet?url=https%3A%2F%2Fgithub.com%2Fthemesberg%2Fflowbite-svelte-admin-dashboard&text=Check%20out%20this%20open-source%20admin%20dashboard%20built%20with%20Flowbite%20and%20Tailwind%20CSS)
2+
3+
[![version](https://img.shields.io/npm/v/flowbite-svelte-admin-dashboard)](https://www.npmjs.com/package/flowbite-svelte-admin-dashboard)
4+
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md)
5+
[![GitHub issues open](https://img.shields.io/github/issues/themesberg/flowbite-svelte-admin-dashboard.svg)](https://github.com/themesberg/flowbite-svelte-admin-dashboard/issues?q=is%3Aopen+is%3Aissue)
6+
[![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/themesberg/flowbite-svelte-admin-dashboard.svg)](https://github.com/themesberg/flowbite-svelte-admin-dashboard/issues?q=is%3Aissue+is%3Aclosed)
7+
8+
[![Flowbite Admin Dashboard Live Preview](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/flowbite-admin-dashboard-preview.png)](https://flowbite-admin-dashboard.vercel.app/)
9+
10+
This project is a free and open-source UI admin dashboard template built with the components from [Flowbite](https://github.com/themesberg/flowbite) and based on the utility-first [Tailwind CSS](https://github.com/tailwindlabs/tailwindcss) framework featuring charts, tables, widgets, CRUD layouts, modals, drawers, and more.
11+
12+
This admin dashboard can quickly help you get started building an application for your project using the newest UI/UX development technologies in the open-source area including Tailwind CSS and Flowbite.
13+
14+
## 🌀 Built with Flowbite
15+
16+
The interactive components such as the navbars, modals, drawers, and tooltips are all based on the popular [open-source component library called Flowbite](https://flowbite.com/) which enables us to use these elements by creating more complex set of pages and widgets inside a fully-fledged admin dashboard template.
17+
18+
## 💨 Tailwind CSS utility classes
19+
20+
All of the pages, widgets, and components are solely based on the utility-first classes from Tailwind CSS and it is compatible with the latest `v3.x` of the technology by automatically purging all of the classes based on the template paths.
21+
22+
## 📚 Flowbite documentation
23+
24+
If you want to use this project we recommend to also [study the component library](https://flowbite.com/docs/getting-started/introduction/) that we used to build this dashboard because you can use even more components from that library to enhance the examples that we've coded here already.
25+
26+
## Table of Contents
27+
28+
- [Flowbite Admin Dashboard ](#flowbite-admin-dashboard-)
29+
- [🌀 Built with Flowbite](#-built-with-flowbite)
30+
- [💨 Tailwind CSS utility classes](#-tailwind-css-utility-classes)
31+
- [📚 Flowbite documentation](#-flowbite-documentation)
32+
- [Table of Contents](#table-of-contents)
33+
- [Demo pages](#demo-pages)
34+
- [Quick start](#quick-start)
35+
- [Browser Support](#browser-support)
36+
- [Resources](#resources)
37+
- [Reporting Issues](#reporting-issues)
38+
- [Technical Support or Questions](#technical-support-or-questions)
39+
- [Licensing](#licensing)
40+
- [Useful Links](#useful-links)
41+
- [Authors](#authors)
42+
43+
## Demo pages
44+
45+
| 🚧 Dashboard | 🚧 Stacked Layout | 🚧 Products (CRUD) |
46+
| ---------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
47+
| [![Dashboard](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/homepage.jpg)]() | [![Stacked Layout](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/stacked.jpg)]() | [![Products (CRUD)](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/products-crud.jpg)]() |
48+
49+
| 🚧 Users (CRUD) | 🚧 Settings | 🚧 Pricing page |
50+
| ---------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
51+
| [![Users (CRUD)](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/users.jpg)]() | [![Settings](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/settings.jpg)]() | [![Pricing page](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/pricing.jpg)]() |
52+
53+
| Login page | Register page | Reset password |
54+
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
55+
| [![Login page](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/login.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/authentication/sign-in/) | [![Register page](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/register.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/authentication/sign-up/) | [![Reset password](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/reset-password.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/authentication/reset-password) |
56+
57+
| Forgot password | Profile lock | Maintenance page |
58+
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
59+
| [![Forgot password](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/forgot-password.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/authentication/forgot-password) | [![Profile lock](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/profile-lock.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/authentication/profile-lock) | [![Maintenance page](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/maintenance.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/pages/maintenance) |
60+
61+
| 404 not found | 500 server error | 🚧 Playground |
62+
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------- |
63+
| [![404 not found](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/404.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/pages/404) | [![500 server error](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/500.jpg)](https://flowbite-svelte-admin-dashboard.vercel.app/pages/500) | [![Playground](https://flowbite.s3.amazonaws.com/templates/flowbite-admin-dashboard/github/playground.jpg)]() |
64+
65+
- [Live Preview](https://flowbite-svelte-admin-dashboard.vercel.app/)
66+
67+
## Quick start
68+
69+
1. [Install Flowbite-Svelte](https://flowbite-svelte.com/pages/getting-started)
70+
71+
2. Install flowbite-svelte-admin-dashboard
72+
73+
```bash
74+
pnpm i flowbite-svelte-admin-dashboard
75+
```
76+
77+
## Browser Support
78+
79+
At present, we officially aim to support the last two versions of the following browsers:
80+
81+
<img src="https://s3.amazonaws.com/creativetim_bucket/github/browser/chrome.png" width="64" height="64"> <img src="https://s3.amazonaws.com/creativetim_bucket/github/browser/firefox.png" width="64" height="64"> <img src="https://s3.amazonaws.com/creativetim_bucket/github/browser/edge.png" width="64" height="64"> <img src="https://s3.amazonaws.com/creativetim_bucket/github/browser/safari.png" width="64" height="64"> <img src="https://s3.amazonaws.com/creativetim_bucket/github/browser/opera.png" width="64" height="64">
82+
83+
## Resources
84+
85+
- Live preview: <https://flowbite-svelte-admin-dashboard.vercel.app/>
86+
- Flowbite documentation: <https://flowbite.com/docs/getting-started/introduction/>
87+
- Tailwind CSS documentation: <https://tailwindcss.com/>
88+
- License Agreement: <https://flowbite.com/docs/getting-started/license/>
89+
- Issues: [Github Issues Page](https://github.com/themesberg/flowbite-svelte-admin-dashboard/issues)
90+
91+
## Reporting Issues
92+
93+
We use GitHub Issues as the official bug tracker for Flowbite Svelte Admin Dashboard. Here are some advices for our users that want to report an issue:
94+
95+
1. Make sure that you are using the latest version of Flowbite Admin Dashboard. Check the CHANGELOG from your dashboard on the [GitHub releases page](https://github.com/themesberg/flowbite-svelte-admin-dashboard/releases).
96+
2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
97+
3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.
98+
99+
## Technical Support or Questions
100+
101+
If you have questions or need help integrating the product please [contact us](https://github.com/themesberg/flowbite-svelte-admin-dashboard/issues) instead of opening an issue.
102+
103+
## Licensing
104+
105+
- Copyright 2019-2023 Bergside Inc. (https://flowbite.com)
106+
- Open-source under the [MIT License](https://github.com/themesberg/flowbite-admin-dashboard/blob/main/LICENSE)
107+
108+
## Useful Links
109+
110+
- 🌶 [Flowbite-Svelte](https://flowbite-svelte.com) - Open-source components for Svelte
111+
- 📚 [Flowbite Library](https://flowbite.com/) - Open-source components built with Tailwind CSS
112+
- 🎨 [Flowbite Figma](https://flowbite.com/figma/) - Design system built for Figma
113+
- 🧱 [Flowbite Svelte Blocks](https://flowbite-svelte-blocks.com/blocks/) - Building sections for website and applications
114+
- 💎 [Flowbite Pro](https://flowbite.com/pro/) - A larger collection of the open-source version of the latter three
115+
116+
## Authors
117+
118+
- [Zoltán Szőgyényi](https://twitter.com/zoltanszogyenyi)
119+
- [Robert Tanislav](https://twitter.com/roberttanislav)
120+
- [Shinichi Okada](https://twitter.com/shinokada)

0 commit comments

Comments
 (0)