Docs
Neuebrutalism Landing Page

Neuebrutalism Landing Page

A beautiful Landing Page for Neuebrutalism

Installation

Install the following dependencies:

npm install framer-motion

Update tailwind.config.js

Add the following animations to your tailwind.config.js file:

tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    extend: {
       keyframes: {
          blink: {
            "0%, 100%": { opacity: "1" },
            "50%": { opacity: "0" },
         },
        },
       animation: {
          "cursor-blink": "blink 1s step-end infinite",
      },
    },
  },
}

Copy and paste the code into your project.

If you have already used our Marqueen Component, Please skip this step

Copy and paste the code into your project.