From 6d1f955af17ecdf236ecc5c5e1e292315ec81222 Mon Sep 17 00:00:00 2001 From: Fernando Kawano Date: Thu, 6 Jun 2024 17:18:49 -0300 Subject: [PATCH] chore(web): create a github corner icon --- apps/web/components/github-corner.tsx | 33 +++++++++++++++++++++++++++ apps/web/components/header.tsx | 8 +++---- 2 files changed, 36 insertions(+), 5 deletions(-) create mode 100644 apps/web/components/github-corner.tsx diff --git a/apps/web/components/github-corner.tsx b/apps/web/components/github-corner.tsx new file mode 100644 index 0000000..9979f63 --- /dev/null +++ b/apps/web/components/github-corner.tsx @@ -0,0 +1,33 @@ +const GithubCorner = () => { + return ( + + ) +} + +export default GithubCorner diff --git a/apps/web/components/header.tsx b/apps/web/components/header.tsx index 365b46a..61cea92 100644 --- a/apps/web/components/header.tsx +++ b/apps/web/components/header.tsx @@ -1,11 +1,11 @@ import React from 'react' import Image from 'next/image' import Link from 'next/link' -import { Github } from 'lucide-react' +import GithubCorner from './github-corner' export const Header = () => { return ( -