Skip to content

Commit ff49e68

Browse files
Robert BellRobert Bell
authored andcommitted
Initial commit
0 parents  commit ff49e68

File tree

133 files changed

+22075
-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.

133 files changed

+22075
-0
lines changed

.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Dependency directories
2+
node_modules/
3+
4+
# Optional npm cache directory
5+
.npm
6+
7+
# Optional eslint cache
8+
.eslintcache
9+
10+
# Output of 'npm pack'
11+
*.tgz
12+
13+
# Yarn Integrity file
14+
.yarn-integrity
15+
16+
# Compiled source #
17+
###################
18+
*.com
19+
*.class
20+
*.dll
21+
*.exe
22+
*.o
23+
*.so
24+
25+
# Packages #
26+
############
27+
# it's better to unpack these files and commit the raw source
28+
# git has its own built in compression methods
29+
*.7z
30+
*.dmg
31+
*.gz
32+
*.iso
33+
*.jar
34+
*.rar
35+
*.tar
36+
*.zip
37+
38+
# Logs and databases #
39+
######################
40+
*.log
41+
*.sql
42+
*.sqlite
43+
44+
# OS generated files #
45+
######################
46+
.DS_Store
47+
.DS_Store?
48+
._*
49+
.Spotlight-V100
50+
.Trashes
51+
ehthumbs.db
52+
Thumbs.db
53+
54+
# Logs
55+
logs
56+
*.log
57+
npm-debug.log*
58+
yarn-debug.log*
59+
yarn-error.log*
60+
lerna-debug.log*

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Tracker - Tailwind CSS HTML Responsive Admin Panel Template
2+
3+
## Overview
4+
Introducing Tracker, a free one-page dashboard Tailwind CSS HTML template designed specifically for project management. The clean and professional design of Tracker is fully customizable with Tailwind CSS, allowing you to easily adapt the template to your project's needs. Tracker comes with custom components such as a Kanban board for visualizing workflow, a data management table, and call-to-action banners to help you draw attention to important information. These components are designed to help you manage your projects more efficiently and effectively, all while maintaining a sleek and streamlined user experience.
5+
6+
<strong><a href="https://tracker-html-tailwind.vercel.app/">View Demo</a> | <a href="https://github.com/PixelRocket-Shop/tracker-html-tailwind/archive/main.zip">Download ZIP</a></strong>
7+
8+
![Tailwind CSS Responsive HTML One-Page Admin Panel Template](https://pixelrocket-public-assets.s3.eu-west-2.amazonaws.com/corporate-public/free-tailwind-admin-panel.png "Tracker | Tailwind CSS Responsive HTML One-Page Admin Panel Template")
9+
10+
11+
## Table of contents
12+
13+
- [Requirements](#requirements)
14+
- [Quick Start](#quick-start)
15+
- [Contact Me](#contact-me)
16+
17+
18+
## Requirements
19+
If you do not intend to work with the template source code (and that means you will not be compiling it), you do not need to install anything. You can simply navigate to the public folder and take the HTML snippets directly from there.
20+
21+
Most developers will be editing the source code and will also recompile the template files. If that's the case, then ensure that you have Node.js installed. [You can download it from here](https://nodejs.org/en/download/)
22+
23+
If you are going to customise the template or add new pages, you need to familiar with Pug, the template engine used. [You can read more about Pug here](https://pugjs.org/)
24+
25+
## Quick Start
26+
Project's source files are placed in ./src/ directory.
27+
* ./src/assets - default static files (eg. image placeholders). You should replace them with your own files.
28+
* ./src/tailwind/ - Tailwind config file used to build the theme.
29+
30+
All your pages (templates) are stored in separated .pug files
31+
* ./src/pug/*.pug
32+
33+
NOTE: npm commands overwrite the ./public directory.
34+
35+
```
36+
# Install dependencies
37+
npm install
38+
39+
# Run dev server with live preview (Browsersync)
40+
npm run watch
41+
42+
# Or make a production build
43+
npm run build
44+
```
45+
46+
## Contact Me
47+
You can find my website [here](https://www.pixelrocket.store) or you can email me at support@pixelrocket.store

0 commit comments

Comments
 (0)