Docs
Pixel Retro Style Landing Page
Pixel Retro Style Landing Page
A beautiful Pixel Retro Style Landing Page for your web application, used by only copy and paste.
Installation
Install the following dependencies:
npm install framer-motionUpdate 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