HeroUI (Previously NextUI) - Beautiful, fast and modern React UI Library

PHOTO EMBED

Sun Jul 06 2025 09:39:48 GMT+0000 (Coordinated Universal Time)

Saved by @Shookthadev999 #jsx

_app.tsx

import React from "react";

import {HeroUIProvider} from "@heroui/react";



const Application = ({Component, pageProps}) => {

  return (

    <HeroUIProvider>

      <main className={isDark ? "dark" : "light"}>

        <Component {...pageProps} />

      </main>

    </HeroUIProvider>

  );

};



export default Application;  
content_copyCOPY

https://www.heroui.com/?ref