Skip to content

Commit

Permalink
Merge pull request #7 from RafaelBlum/add-logotype-contributors
Browse files Browse the repository at this point in the history
⚡ perf: Add logo in readme, contributors and logo in login and navbar
  • Loading branch information
Shipu authored Mar 27, 2024
2 parents de1a393 + b6121c0 commit a7e87d0
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 2 deletions.
45 changes: 43 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
## Dinero - Multi Account Money Tracker
<p align="center">
<a href="#" target="_blank" title="Dinero">
<img src="/public/brands/dinero-logo.png" alt="Dinero" width="340px">
</a>
</p>

<br>

<p align="center">:rocket: Multi Account Money Tracke :sparkles: <a href="https://github.com/Shipu/dinero">Dinero</a></p>

<p align="center">
<img src="https://img.shields.io/badge/version project-1.0-brightgreen" alt="version project">
<img src="https://img.shields.io/badge/Php-8.1-informational" alt="stack php">
<img src="https://img.shields.io/badge/Laravel-10.46-informational&color=brightgreen" alt="stack laravel">
<img src="https://img.shields.io/badge/Filament-3.2-informational" alt="stack Filament">
<img src="https://img.shields.io/badge/TailwindCss-3.1-informational" alt="stack Tailwind">
<a href="https://opensource.org/licenses/GPL-3.0">
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="GPLv3 License">
</a>
</p>

## Dinero
Dinero is a multi account money tracker. It is a simple application that allows you to track your money in multiple accounts and categories. It is written in PHP (Laravel Framework) and Filament v3.

## Features
Expand Down Expand Up @@ -27,7 +48,7 @@ git checkout native-php
```

## Demo
Url: [http://dinero.bridgex.live](http://dinero.bridgex.live)
> Url: [http://dinero.bridgex.live](http://dinero.bridgex.live)
## Screenshots
![Dashboard](screenshots/dinero-dashboard.png)
Expand All @@ -39,3 +60,23 @@ Url: [http://dinero.bridgex.live](http://dinero.bridgex.live)
![Transactions](screenshots/dinero-transactions.png)
![Accounts](screenshots/dinero-tenants.png)
![MyProfile](screenshots/dinero-my-profile.png)

### :sparkles: Contributors
<table>
<tr>
<td align="center"><a href="https://github.com/Shipu">
<img style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/4118421?v=4" width="100px;" alt=""/>
<br /><sub><b>Shipu Ahamed</b></sub></a></td>
<td align="center"><a href="https://github.com/shojibflamon">
<img style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/5617542?v=4" width="100px;" alt=""/>
<br /><sub><b>Md. Jahidul Islam</b></sub></a></td>
<td align="center"><a href="https://github.com/devalade">
<img style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/74435372?v=4" width="100px;" alt=""/>
<br /><sub><b>Alade YESSOUFOU</b></sub></a></td>
<td align="center"><a href="https://github.com/RafaelBlum">
<img style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/41844692?v=4" width="100px;" alt=""/>
<br /><sub><b>Rafael Blum</b></sub></a></td>
</tr>
</table>

> No one is so wise that they don't have something to learn, nor so foolish that they don't have something to teach. `Blaise Pascal`.
1 change: 1 addition & 0 deletions app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public function panel(Panel $panel): Panel
'primary' => Color::Sky,
])
->sidebarWidth('17rem')
->favicon(asset('brands/dinero-favicon.png'))
->discoverResources(in: app_path('Filament/Resources'), for: 'App\\Filament\\Resources')
->discoverPages(in: app_path('Filament/Pages'), for: 'App\\Filament\\Pages')
->pages([
Expand Down
Binary file added public/brands/dinero-favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/brands/dinero-logo-adm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/brands/dinero-logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/brands/dinero-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions resources/views/vendor/filament-panels/components/logo.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@if(Route::current()->getName() === 'filament.hub.auth.login')
<img src="{{asset('brands/dinero-logo.png')}}"
alt="{{config('app.name')}}"
title="{{config('app.name')}}"
width="290"
class="mb-2"
>
@else
<img src="{{asset('brands/dinero-logo-adm.png')}}"
alt="{{config('app.name')}}"
title="{{config('app.name')}}"
width="140"
>
@endif

{{-- Precisa somente de uma condição para trocar as logos quando sistema esta dark e light e retirar o style --}}

0 comments on commit a7e87d0

Please sign in to comment.