DEV Community

Cover image for Create A Beautiful Hero Section Using React and TailwindCSS
Nitin Sharma
Nitin Sharma

Posted on • Originally published at locofy.ai

Create A Beautiful Hero Section Using React and TailwindCSS

The hero section is the first thing visitors notice when they visit our websites. It introduces the main content or goal of the website whether you are educating your visitors or trying to sell a product or service.

In other words, the hero section is one of the most important areas of a website and requires a significant amount of attention during the design process. It is a key element in engaging users and should be given careful consideration when creating a website.

Apple Website Hero Section

This is the Apple website's hero section.

They listed the most recently released product from the previous year. As a result, whenever a user visits, they can easily find the recently launched product as well as some links that direct them to take action.

In this guide, we'll be creating a hero section in React with TailwindCSS.

Setting Up the Development Environment

To use TailwindCSS inside a React app, you must first set it up and configure it.

  • First, create a React app by running the command:
npx create-react-app my-app
Enter fullscreen mode Exit fullscreen mode
  • Next, install TailwindCSS and other dependencies like "postcss" and "autoprefixer" using the command:
npm install -D tailwindcss postcss autoprefixer
Enter fullscreen mode Exit fullscreen mode
  • Create config files by running the command: "npx tailwindcss init -p" and open the tailwind.config.css file and replace the content with the provided code snippet.
/** @type {import('tailwindcss').Config} */

module.exports = {
content: [
   "./src/**/*.{js,jsx,ts,tsx}",
 ],
 theme: {
   extend: {},
 },
 plugins: [],
}
Enter fullscreen mode Exit fullscreen mode
  • Lastly, paste the following code snippet inside the src/index.css file:
@tailwind base;
@tailwind components;
@tailwind utilities;
Enter fullscreen mode Exit fullscreen mode

You can now use TailwindCSS in your React app. Here is the blog article if you want to learn more about it.


An Overview of the Structure and Layout of the Hero Section

Before we start building the hero section, let's understand the key elements of any hero section. Most often, the hero section is made up of these elements i.e.

  1. An eye-catching image or video: This is the main visual element of the hero section and sets the tone for the rest of the website. The image/video can be anywhere, on the left side, right side, or even in the background.
  2. A heading: This is a short and catchy phrase that conveys the main message of the website. A heading can also be placed anywhere based on where the image is placed.
  3. A subheading: This provides more information about the website or the main message. It always comes below the heading.
  4. A call-to-action (CTA) button: This is a button that encourages the user to take a specific action, such as signing up for a newsletter or making a purchase. It always comes below the heading and subheading.
  5. Overlay: A color or pattern that overlays the background image to increase the visibility of the text and CTA button.
  6. Additional elements such as icons, animations, or other graphics can be added to the hero section to make it more visually appealing.

In addition to these key elements, it is critical to discover a means to differentiate your brand from the competitors. This may be accomplished by using visually engaging design components such as high-quality images, videos, or animation, as well as unique typography, color schemes, and layouts.

Depending on the aesthetic of your website and the style you choose, you may use a full-screen background image or video, a carousel slider, or a split-screen layout as a hero section design idea.

Let's look visually at some of the layouts for the hero section.

Hero Layout


Creating a Responsive Hero Section

Here, we will design the hero section shown below.

Hero Section

Here is the code for that:

import React from 'react';
import hero from "./assets/hero.png"

function App() {
 return (
   <div className="w-screen h-screen text-white" style={{
     background: "linear-gradient(90deg, rgba(131, 126, 226, 1) 24%, rgba(114, 114, 226, 1) 58%, rgba(0, 212, 255, 1) 100%)"
   }}>
     <div class="container mx-auto flex px-5 py-24 items-center justify-center flex-col">
       <img class="lg:w-2/6 md:w-3/6 w-5/6 mb-10 object-cover object-center" alt="hero" src={hero} />
       <div class="text-center lg:w-5/12 w-full">
         <h1 className="my-4 text-5xl font-bold leading-tight">
           Turn your designs into production-ready frontend
         </h1>
         <p className="text-2xl mb-8">
           Ship products 5-10x faster with your existing design tools, tech stacks & workflows!
         </p>
         <div className="flex justify-center mx-auto">
           <button
             className="hover:underline bg-white text-gray-800 font-bold rounded-full  py-4 px-8">
             View Projects
           </button>
           <button
             className="ml-4 hover:underline bg-white text-gray-800 font-bold rounded-full  py-4 px-8">
             Plugins
           </button>
         </div>
       </div>
     </div>
   </div >
 );
}

export default App
Enter fullscreen mode Exit fullscreen mode

Code Explanation:

  1. The outer "div" consists of a linear gradient with the width and height of the screen.
  2. The component consists of an inner "div" that uses a flexbox to center its children horizontally and vertically. The container has an image element that displays the "hero.png" image and sets its size based on the screen size.
  3. Beside the image is a "div" with text content inside it. The text includes a heading and a description. The title is displayed using an "h1" element and the description is displayed using a "p" element.
  4. Finally, there are two buttons that are displayed below the text. The buttons have text that reads "View Projects" and "Plugins" and is displayed side by side with some margins.

In terms of responsiveness, it is totally responsive due to the usage of breakpoints like "lg" and "md" to adjust the content for various screen sizes.


Revolutionize Your Website Design With the Help of TailwindCSS

As we learned in our last post, creating personalized navigation bars and designing numerous layouts for your website's hero section becomes intuitive with TailwindCSS.

The conventional difficulties with styling and design are eliminated by using TailwindCSS, which makes modification and execution simple. This should serve as proof of TailwindCSS's skills and the potential it has to revolutionize the look of your website.

TailwindCSS is not just limited to creating visually appealing hero sections and navigation bars. It can also be utilized for a wide range of design elements on your website such as buttons, forms, modals, cards, and much more. With its extensive set of utility classes, it allows for easy manipulation of typography, spacing, colors, and more.

It also has a responsive design built-in, making it easy to create mobile-friendly websites with minimal effort.

Additionally, it can be used along with different JavaScript frameworks such as React, Vue, and Angular, to create dynamic and interactive user interfaces. The possibilities are endless with TailwindCSS and its ability to streamline the design and development process, making it a valuable tool in any web developer's toolkit.


Go from Design to Responsive Code

You can also generate responsive code directly from your design files in Figma and Adobe XD using the Locofy.ai plugin.

Locofy automatically picks up your Figma auto layout settings and constraints to generate responsive code with flex properties. Additionally, the auto layout facilitates the design process and allows you to create designs faster with cleaner structures, as shown in our recent guide.

Figma Template

What's more is that you can also configure layout direction for different breakpoints using the plugin, enabling you to directly go from design to pixel-perfect responsive code.

The code can be generated in React, React Native, Next.js, and Gatsby as well as HTML-CSS.


Hope you like it.

That's it - thanks.

Top comments (1)

Collapse
 
acidop profile image
Zeeshan 🎖

Heyy amazing article Nitin.