Skip to content

Commit

Permalink
Merge pull request #32 from ivalshamkya/development
Browse files Browse the repository at this point in the history
chore: add new project
  • Loading branch information
ivalshamkya committed Mar 7, 2024
2 parents 24879be + b47a8e6 commit 11f0710
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 4 deletions.
Binary file added public/preview/neobruu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/Projects/ToolBadge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ interface SkillInterfaces {

const ToolBadge: React.FC<SkillInterfaces> = ({ name, icon }) => {
return (
<div className={`w-fit py-1 px-1 md:py-2 md:px-2 flex justify-center items-center ${name ? "gap-2" : ""} bg-white dark:bg-[#252525] border border-slate-200 dark:border-white/10 rounded-lg transition-all linear duration-300`}>
<div className="w-3 md:w-4">{icon}</div>
<h1 className="whitespace-nowrap text-primary text-[0.6rem] md:text-xs">{name}</h1>
<div className={`w-fit py-1 px-1 md:py-2 md:px-2 flex justify-center items-center ${name ? "gap-2" : ""} bg-white dark:bg-[#252525] border border-slate-200 dark:border-white/10 rounded-md transition-all linear duration-300`}>
<div className="w-4">{icon}</div>
<h1 className="whitespace-nowrap text-primary text-[0.7rem] md:text-xs">{name}</h1>
</div>
);
};
Expand Down
File renamed without changes.
35 changes: 35 additions & 0 deletions src/content/projects/neobruu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: NeoBruu
description: A collection of Neo-Brutalist reusable components written in React and Tailwind CSS.
url: neobruu.vercel.app
github: https://github.com/ivalshamkya/neobruu
role: author
publishedDate: 2024-01-26
updatedDate: 2024-03-04
image: "/preview/neobruu.png"
imageAlt: "hero"
languages: ["Next.js", "TypeScript", "TailwindCSS"]
---

## 🙌 Introduction

NeoBruu is a curated collection of type-safe components designed to embrace the Neo-Brutalist design ethos while prioritizing simplicity, functionality, and accessibility. Whether you're building a personal project, a startup, or an enterprise-level application, NeoBruu provides the building blocks you need to create stunning and efficient user interfaces.

## Features

- **Neo-Brutalist Design**: Embrace unconventional design elements and distinctive color palettes.
- **React and Tailwind CSS**: Utilize React for component-based development and Tailwind CSS for rapid styling.
- **Type-Safe Components**: Ensure type safety and maintainability with type-safe components.
- **Open-Source**: Contribute to the project, suggest new features, and collaborate with the community.

## Documentation

Visit [http://neobruu.vercel.app/docs](http://neobruu.vercel.app/docs) to view the documentation.

## Contributing

We welcome contributions from the community! Feel free to open issues, submit pull requests, or suggest new ideas to help improve NeoBruu.

## License

Licensed under the [MIT license](https://github.com/ivalshamkya/neobruu/blob/main/LICENSE).
2 changes: 1 addition & 1 deletion src/layouts/ProjectLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const ogImage = {
}
</ul>
<div class="flex items-center">
<a href={github}>
<a href={github} target="_blank">
<ToolBadge icon={STACKS['Github']} name={""} />
</a>
</div>
Expand Down

0 comments on commit 11f0710

Please sign in to comment.