Skip to content

Commit

Permalink
Feature/product logo (#405)
Browse files Browse the repository at this point in the history
* Feat: Product branding

* Feat: Add logo on the loginPage

* Feat: Mentingo logo in main readme
  • Loading branch information
PoslinskiNet authored Jan 31, 2025
1 parent 354a3e0 commit 781f1e3
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 28 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div align="center">

# LMS Core Project
<img src="https://github.com/Selleo/lms-core/blob/master/product-logo/apps/web/app/assets/menitngo_logo.png?raw=true" alt"" />

# Mentingo LMS Core Project

[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/) [![Node.js](https://img.shields.io/badge/Node.js-20.15.0-brightgreen.svg)](https://nodejs.org/) [![pnpm](https://img.shields.io/badge/pnpm-supported-blue.svg)](https://pnpm.io/) [![NestJS](https://img.shields.io/badge/NestJS-10.x-red.svg)](https://nestjs.com/) [![Remix](https://img.shields.io/badge/Remix-Latest-purple.svg)](https://remix.run/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
</br>
Expand Down
40 changes: 13 additions & 27 deletions apps/web/app/assets/brand.svg
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 apps/web/app/assets/menitngo_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions apps/web/app/assets/menitngo_logo_light_transparent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions apps/web/app/modules/Auth/Login.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { useTranslation } from "react-i18next";
import { z } from "zod";

import { useLoginUser } from "~/api/mutations/useLoginUser";
import LogoUrl from "~/assets/menitngo_logo_light_transparent.svg";
import { FormCheckbox } from "~/components/Form/FormCheckbox";
import { Button } from "~/components/ui/button";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "~/components/ui/card";
Expand Down Expand Up @@ -43,6 +44,12 @@ export default function LoginPage() {
<Card className="mx-auto max-w-sm">
<CardHeader>
<CardTitle role="heading" className="text-2xl">
<img
src={LogoUrl}
alt=""
loading="eager"
decoding="async"
/>
{t("loginView.header")}
</CardTitle>
<CardDescription>{t("loginView.subHeader")}</CardDescription>
Expand Down

0 comments on commit 781f1e3

Please sign in to comment.