tailwind模板tailwind-starter-kit-main├── CHANGELOG.md
├── Dashboard Page
│ ├── README.md
│ ├── angular-dashboard-page
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── browserslist
│ │ ├── e2e
│ │ │ ├── protractor.conf.js
│ │ │ ├── src
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app-routing.module.ts
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.ts
│ │ │ │ ├── app.module.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── bar-chart
│ │ │ │ │ │ ├── bar-chart.component.html
│ │ │ │ │ │ └── bar-chart.component.ts
│ │ │ │ │ ├── line-chart
│ │ │ │ │ │ ├── line-chart.component.html
│ │ │ │ │ │ └── line-chart.component.ts
│ │ │ │ │ ├── navbar
│ │ │ │ │ │ ├── navbar.component.html
│ │ │ │ │ │ └── navbar.component.ts
│ │ │ │ │ ├── notification-dropdown
│ │ │ │ │ │ ├── notification-dropdown.component.html
│ │ │ │ │ │ └── notification-dropdown.component.ts
│ │ │ │ │ ├── sidebar
│ │ │ │ │ │ ├── sidebar.component.html
│ │ │ │ │ │ └── sidebar.component.ts
│ │ │ │ │ └── user-dropdown
│ │ │ │ │ ├── user-dropdown.component.html
│ │ │ │ │ └── user-dropdown.component.ts
│ │ │ │ └── pages
│ │ │ │ └── dashboard
│ │ │ │ ├── dashboard.component.html
│ │ │ │ └── dashboard.component.ts
│ │ │ ├── apple-icon.png
│ │ │ ├── assets
│ │ │ │ └── img
│ │ │ │ └── team-1-800x800.jpg
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── polyfills.ts
│ │ │ ├── styles.css
│ │ │ └── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.spec.json
│ │ └── tslint.json
│ ├── html-dashboard-page
│ │ ├── README.md
│ │ ├── assets
│ │ │ └── img
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ └── team-1-800x800.jpg
│ │ └── dashboard.html
│ ├── react-dashboard-page
│ │ ├── README.md
│ │ ├── gulpfile.js
│ │ ├── jsconfig.json
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── manifest.json
│ │ │ └── robots.txt
│ │ └── src
│ │ ├── assets
│ │ │ └── img
│ │ │ └── team-1-800x800.jpg
│ │ ├── components
│ │ │ ├── BarChart.js
│ │ │ ├── LineChart.js
│ │ │ ├── Navbar.js
│ │ │ ├── NotificationDropdown.js
│ │ │ ├── Sidebar.js
│ │ │ └── UserDropdown.js
│ │ ├── index.js
│ │ └── views
│ │ └── Dashboard.js
│ └── vuejs-dashboard-page
│ ├── README.md
│ ├── babel.config.js
│ ├── package.json
│ ├── public
│ │ ├── apple-icon.png
│ │ ├── favicon.ico
│ │ └── index.html
│ └── src
│ ├── App.vue
│ ├── assets
│ │ └── img
│ │ └── team-1-800x800.jpg
│ ├── components
│ │ ├── BarChart.vue
│ │ ├── LineChart.vue
│ │ ├── Navbar.vue
│ │ ├── NotificationDropdown.vue
│ │ ├── Sidebar.vue
│ │ └── UserDropdown.vue
│ ├── main.js
│ └── views
│ └── Dashboard.vue
├── LICENSE.md
├── Landing Page
│ ├── README.md
│ ├── angular-landing-page
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── browserslist
│ │ ├── e2e
│ │ │ ├── protractor.conf.js
│ │ │ ├── src
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app-routing.module.ts
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.ts
│ │ │ │ ├── app.module.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── footer
│ │ │ │ │ │ ├── footer.component.html
│ │ │ │ │ │ └── footer.component.ts
│ │ │ │ │ └── navbar
│ │ │ │ │ ├── navbar.component.html
│ │ │ │ │ └── navbar.component.ts
│ │ │ │ └── pages
│ │ │ │ └── landing
│ │ │ │ ├── landing.component.html
│ │ │ │ └── landing.component.ts
│ │ │ ├── assets
│ │ │ │ └── img
│ │ │ │ ├── apple-icon.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── team-1-800x800.jpg
│ │ │ │ ├── team-2-800x800.jpg
│ │ │ │ ├── team-3-800x800.jpg
│ │ │ │ └── team-4-470x470.png
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── polyfills.ts
│ │ │ ├── styles.css
│ │ │ └── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.spec.json
│ │ └── tslint.json
│ ├── html-landing-page
│ │ ├── README.md
│ │ ├── assets
│ │ │ └── img
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── team-1-800x800.jpg
│ │ │ ├── team-2-800x800.jpg
│ │ │ ├── team-3-800x800.jpg
│ │ │ └── team-4-470x470.png
│ │ └── landing.html
│ ├── next-landing-page
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── img
│ │ │ │ ├── team-1-800x800.jpg
│ │ │ │ ├── team-2-800x800.jpg
│ │ │ │ ├── team-3-800x800.jpg
│ │ │ │ └── team-4-470x470.png
│ │ │ └── styles
│ │ │ ├── index.css
│ │ │ └── main.scss
│ │ ├── components
│ │ │ ├── Footer.tsx
│ │ │ ├── Layout.tsx
│ │ │ └── Navbar.tsx
│ │ ├── next-env.d.ts
│ │ ├── next.config.js
│ │ ├── package.json
│ │ ├── pages
│ │ │ ├── _app.tsx
│ │ │ └── index.tsx
│ │ ├── postcss.config.js
│ │ ├── tailwind.config.js
│ │ └── tsconfig.json
│ ├── react-landing-page
│ │ ├── README.md
│ │ ├── gulpfile.js
│ │ ├── jsconfig.json
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── manifest.json
│ │ │ └── robots.txt
│ │ └── src
│ │ ├── assets
│ │ │ └── img
│ │ │ ├── team-1-800x800.jpg
│ │ │ ├── team-2-800x800.jpg
│ │ │ ├── team-3-800x800.jpg
│ │ │ └── team-4-470x470.png
│ │ ├── components
│ │ │ ├── Footer.js
│ │ │ └── Navbar.js
│ │ ├── index.js
│ │ └── views
│ │ └── Landing.js
│ └── vuejs-landing-page
│ ├── README.md
│ ├── babel.config.js
│ ├── package.json
│ ├── public
│ │ ├── apple-icon.png
│ │ ├── favicon.ico
│ │ └── index.html
│ └── src
│ ├── App.vue
│ ├── assets
│ │ └── img
│ │ ├── team-1-800x800.jpg
│ │ ├── team-2-800x800.jpg
│ │ ├── team-3-800x800.jpg
│ │ └── team-4-470x470.png
│ ├── components
│ │ ├── Footer.vue
│ │ └── Navbar.vue
│ ├── main.js
│ └── views
│ └── Landing.vue
├── Login Page
│ ├── README.md
│ ├── angular-login-page
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── browserslist
│ │ ├── e2e
│ │ │ ├── protractor.conf.js
│ │ │ ├── src
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app-routing.module.ts
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.ts
│ │ │ │ ├── app.module.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── footer
│ │ │ │ │ │ ├── footer.component.html
│ │ │ │ │ │ └── footer.component.ts
│ │ │ │ │ └── navbar
│ │ │ │ │ ├── navbar.component.html
│ │ │ │ │ └── navbar.component.ts
│ │ │ │ └── pages
│ │ │ │ └── login
│ │ │ │ ├── login.component.html
│ │ │ │ └── login.component.ts
│ │ │ ├── apple-icon.png
│ │ │ ├── assets
│ │ │ │ └── img
│ │ │ │ ├── github.svg
│ │ │ │ ├── google.svg
│ │ │ │ └── register_bg_2.png
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── polyfills.ts
│ │ │ ├── styles.css
│ │ │ └── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.spec.json
│ │ └── tslint.json
│ ├── html-login-page
│ │ ├── README.md
│ │ ├── assets
│ │ │ └── img
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── github.svg
│ │ │ ├── google.svg
│ │ │ └── register_bg_2.png
│ │ └── login.html
│ ├── react-login-page
│ │ ├── README.md
│ │ ├── gulpfile.js
│ │ ├── jsconfig.json
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── manifest.json
│ │ │ └── robots.txt
│ │ └── src
│ │ ├── assets
│ │ │ └── img
│ │ │ ├── github.svg
│ │ │ ├── google.svg
│ │ │ └── register_bg_2.png
│ │ ├── components
│ │ │ ├── FooterSmall.js
│ │ │ └── Navbar.js
│ │ ├── index.js
│ │ └── views
│ │ └── Login.js
│ └── vuejs-login-page
│ ├── README.md
│ ├── babel.config.js
│ ├── package.json
│ ├── public
│ │ ├── apple-icon.png
│ │ ├── favicon.ico
│ │ └── index.html
│ └── src
│ ├── App.vue
│ ├── assets
│ │ └── img
│ │ ├── github.svg
│ │ ├── google.svg
│ │ └── register_bg_2.png
│ ├── components
│ │ ├── Footer.vue
│ │ └── Navbar.vue
│ ├── main.js
│ └── views
│ └── Login.vue
├── Profile Page
│ ├── README.md
│ ├── angular-profile-page
│ │ ├── README.md
│ │ ├── angular.json
│ │ ├── browserslist
│ │ ├── e2e
│ │ │ ├── protractor.conf.js
│ │ │ ├── src
│ │ │ │ ├── app.e2e-spec.ts
│ │ │ │ └── app.po.ts
│ │ │ └── tsconfig.json
│ │ ├── karma.conf.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app-routing.module.ts
│ │ │ │ ├── app.component.html
│ │ │ │ ├── app.component.ts
│ │ │ │ ├── app.module.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── footer
│ │ │ │ │ │ ├── footer.component.html
│ │ │ │ │ │ └── footer.component.ts
│ │ │ │ │ └── navbar
│ │ │ │ │ ├── navbar.component.html
│ │ │ │ │ └── navbar.component.ts
│ │ │ │ └── pages
│ │ │ │ └── profile
│ │ │ │ ├── profile.component.html
│ │ │ │ └── profile.component.ts
│ │ │ ├── apple-icon.png
│ │ │ ├── assets
│ │ │ │ └── img
│ │ │ │ └── team-2-800x800.jpg
│ │ │ ├── environments
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── environment.ts
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── polyfills.ts
│ │ │ ├── styles.css
│ │ │ └── test.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.spec.json
│ │ └── tslint.json
│ ├── html-profile-page
│ │ ├── README.md
│ │ ├── assets
│ │ │ └── img
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ └── team-2-800x800.jpg
│ │ └── profile.html
│ ├── react-profile-page
│ │ ├── README.md
│ │ ├── gulpfile.js
│ │ ├── jsconfig.json
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── apple-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── manifest.json
│ │ │ └── robots.txt
│ │ └── src
│ │ ├── assets
│ │ │ └── img
│ │ │ └── team-2-800x800.jpg
│ │ ├── components
│ │ │ ├── Footer.js
│ │ │ └── Navbar.js
│ │ ├── index.js
│ │ └── views
│ │ └── Profile.js
│ └── vuejs-profile-page
│ ├── README.md
│ ├── babel.config.js
│ ├── package.json
│ ├── public
│ │ ├── apple-icon.png
│ │ ├── favicon.ico
│ │ └── index.html
│ └── src
│ ├── App.vue
│ ├── assets
│ │ └── img
│ │ └── team-2-800x800.jpg
│ ├── components
│ │ ├── Footer.vue
│ │ └── Navbar.vue
│ ├── main.js
│ └── views
│ └── Profile.vue
├── README.md
├── compiled-tailwind.css
├── compiled-tailwind.min.css
├── images
│ ├── dashboard.jpg
│ ├── landing.jpg
│ ├── login.jpg
│ └── profile.jpg
├── tailwind.css
└── tailwind.min.css
135 directories, 325 files
评论