Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

meowlounge/eagleui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EagleUI 🦅

EagleUI is a modern, flexible, and highly customizable UI component library by @prodbyeagle. Originally built for prodbyeagle's own projects, it is now open for everyone to use and contribute to.

Table of Contents

Features

  • Fully Customizable – Tailor components to match your design system.
  • Modern & Minimalist – Designed with Swiss-inspired aesthetics and best UX practices.
  • Reusable & Performant – Speed up development with lightweight, optimized components.
  • TypeScript Support – Built with TypeScript for safety and a great developer experience.

Installation

Ensure you have Node.js installed, along with your preferred package manager (npm, pnpm, or yarn).

Install via your package manager

# npm
npm install @prodbyeagle/eagle-ui

# pnpm
pnpm add @prodbyeagle/eagle-ui

# yarn
yarn add @prodbyeagle/eagle-ui

Verify Peer Dependencies

Some components may require additional peer dependencies. Check the documentation for details.

Usage

Import and use EagleUI components in your Next.js project:

import { Button } from '@prodbyeagle/eagle-ui';

export default function Home() {
  return (
    <div className="flex flex-col items-center justify-center p-8">
      <h1 className="text-2xl font-semibold">Welcome to EagleUI</h1>
      <p className="text-neutral-500">Customize and build fast with reusable components.</p>
      <Button variant="border" onClick={() => alert('Button Clicked!')}>
        Click Me
      </Button>
    </div>
  );
}

Contributing

We welcome contributions! To contribute:

  1. Fork the repository

  2. Create a new branch

    git checkout -b feature/your-feature-name
  3. Make changes and commit

    git commit -m "Add: YourFeatureName"
  4. Push your branch

    git push origin feature/your-feature-name
  5. Open a pull request

For major changes, please open an issue first to discuss your ideas.

License

EagleUI is open source and available under the MIT License.


Happy coding! 🦅

Languages