This is a responsive landing page template for a company built with Tailwind CSS. It comes with a refreshing design, fully customizable and all essential elements that needed to launch a complete website. This project is created to practice and improve my Tailwind CSS skill.
Inazuma Tailwind CSS is an open-source and free Tailwind CSS template created by Ranyeh. Crafted for company website and can be used with almost all sort of web project. This template is Tailwind CSS version of Inazuma template with more refreshing design in it.
- Responsive navbar with CTA and dark mode buttons
- Hero section with CTA and intro video buttons
- Contains animations when scrolling
- Smooth scrolling in each section
- Includes a dark & light theme mode
- Responsive footer
- SEO-Friendly
- Compatible to all browsers
- HTML
- CSS
- JavaScript
- Tailwind CSS
You can see the live demo here.
- Clone the repository:
git clone https://github.com/yourusername/inazuma-tailwind.git
- Or you can download and extract it to your project folder.
- Open
index.html
in your web browser.
This project is a static website. You can use it as a template or reference for building similar landing pages or to practice your Tailwind CSS skill.
If you're new to Tailwind CSS, you have to learn it before doing customization. You can learn it here.
- Open the
tailwind.config.js
file. - Go to the
colors
key in theextend
section undertheme
section.
/** @type {import('tailwindcss').Config} */
module.exports = {
...
theme: {
extend: {
...
colors: {
// Colors customization here
// If you want to change key name, make sure you change the class name that used in the HTML file
},
...
},
},
...
};
- Change the color keys or values you want. To learn more, see the color customization documentation.
- Save the changes and run it in your web browser.
- Open the
tailwind.config.js
file. - Go to the
fontFamily
key in theextend
section undertheme
section.
/** @type {import('tailwindcss').Config} */
module.exports = {
...
theme: {
extend: {
...
fontFamily: {
sans: ["Inter", "sans-serif"], //Sans-serif font
},
...
},
},
...
};
- Replace
Inter
font name with another font name you want. To learn more, see the font family customization documentation. - Open the
tailwind.css
file. - Update the Google Fonts link and change
font-family
property with the font name you want.
@import url(/* Your Google Fonts link here */);
...
@layer base {
...
html {
...
font-family: /* Your font name here */;
}
...
}
- Save the changes and run it in your web browser.
Have a bug or an issue with this template? Open a new issue here on GitHub or email me at [email protected].
- Template design from Play | Free Tailwind CSS Template for Startup and SaaS By TailGrids
- Images from Unsplash
Inazuma is open-source and available under the MIT License. You can use it with your personal or commercial projects without any attribution or backlink.