Get start with Techwind. Launch your campaign and benefit from our expertise on designing and managing conversion centered Tailwind CSS html page.
Techwind is a Powerful Tailwind CSS Multipurpose Landing & Admin Dashboard Template. It is an excellent HTML template for startup, cloud hosting, business, corporate, minimal portfolio single product (Smartwatch) , Saas, Social media marketing, Digital marketing/agency, Email Templates, Marketing, Agency, Careers and Jobs, Helpcenter, and much more.
We are using gulp which allows having complete automation for build flow. In case if you don't know Gulp then it's easy to use it. Gulp is a toolkit for automating painful or time-consuming tasks in the development workflow, so you can stop messing around while building any project. You can read it more about it here. Please follow below steps to install and setup all prerequisites:
Please follow below steps to install and setup all prerequisites:
Make sure to have the Yarn installed & running in your computer. If you already have installed Yarn on your computer, you can skip this step. We suggest you to use Yarn instead of NPM.
Make sure to have the Node.js installed & running in your computer. If you already have installed Node on your computer, you can skip this step if your existing node version is greater than 16.
Make sure to have the Gulp installed & running in your computer. If you already have installed gulp on run command npm install -g gulp from your terminal.
Make sure to have the Git installed globally & running on your computer. If you already have installed git on your computer, you can skip this step.
To setup the admin theme, follow below-mentioned steps:
Make sure to have all above prerequisites installed & running on your computer
After you finished with the above steps, you can run the following commands into the terminal / command prompt from the root directory of the project to run the project locally or build for production use:
Command | Description |
---|---|
yarn install
|
This would install all the required dependencies in the node_modules folder.
|
gulp
|
Runs the project locally, starts the development server and watches for any changes in your code, including your HTML, javascript, sass, etc. The development server is accessible at http://localhost:3000. |
gulp build
|
Generates a /dist directory with all the production files.
|
Landing Template
│
├── dist folder
├── src folder
├── assets
├── fonts
├── images
├── js
├── php (for contact form)
└── scss
├── custom
├── pages
├── plugins
├── structure
├── _fonts.scss
└── _general.scss
├── tailwind.scss
├── partials
├── footer
└── All Footer partials html files
├── navbar
└── All Navbar partials html files
├── body.html
├── head-css.html
├── dark-theme.html
├── main.html
├── cookies.html
├── switcher.html
├── script-file.html
└── title-meta.html
└── all html pages
├── gulpfile.js
├── package.json
└── tailwind.config.js
Admin Dashboard Template
│
├── dist folder
├── src folder
├── assets
├── fonts
├── images
├── js
└── scss
├── custom
├── pages
├── plugins
├── structure
├── _fonts.scss
└── _general.scss
├── tailwind.scss
├── partials
├── footer
└── All Footer partials html files
├── sidebar
└── All sidebar partials html files
├── body.html
├── head-css.html
├── main-dark.html
├── main-dark-rtl.html
├── main-rtl.html
├── main.html
├── profile-sidebar-nav.html
├── switcher.html
├── script-file.html
└── title-meta.html
└── top-header.html
└── all html pages
├── gulpfile.js
├── package.json
└── tailwind.config.js
Files are explained below:
File | Description |
---|---|
CSS |
You use icons.css and tailwind.css .
|
Dark Version |
In order to have Dark mode enabled, only add dark class in HTML tag like, <html class="dark" lang="en">
|
RTL Version |
In order to have RTL mode enabled, Please changes in the src/partials/main.html file update the html tag like <html class="dark scroll-smooth" lang="en" dir="ltr">
|
It's easy to change your color if your color is indigo-600
to another (red-600, red-400, orange-700, etc. as your theme primary color)
please check and read the below link to the customizing colors docs, https://tailwindcss.com/docs/customizing-colors
Please first of all open the tailwind.config.js
and please create your google fonts name in the module.exports > theme > fontFamily
For example: 'rubik': ['"Rubik", sans-serif'],
add your Google fonts like the above example.
If you use right side navbar menu so please use src/partials/navbar/nav-right.html
otherwise
If you directly use dist
file so please just add one class justify-end
along with navigation-menu
If you use left side navbar menu so please use src/partials/navbar/nav-left.html
otherwise
If you directly use dist
file so please just add one class justify-start
along with navigation-menu
If you use Light menu so please use src/partials/navbar/nav-center-light.html
otherwise
If you directly use dist
file so please just add one class nav-light
along with navigation-menu
If you use Light with Left side navbar menu so please use src/partials/navbar/nav-left-light.html
otherwise
If you directly use dist
file so please just add two class justify-start nav-light
along with navigation-menu
If you use Light with Right side navbar menu so please use src/partials/navbar/nav-right-light.html
otherwise
If you directly use dist
file so please just add two class justify-end nav-light
along with navigation-menu