From 8105224012504fff2b7a66dd7a1766ee38c9bee3 Mon Sep 17 00:00:00 2001 From: Deeksha K Date: Sun, 27 Oct 2024 22:32:13 +0530 Subject: [PATCH] made nav bar buttons more uniformed --- package.json | 1 + src/components/Navbar/index.jsx | 35 +++++++++++++++++++-------------- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index ace5251..5936666 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "preview": "vite preview" }, "dependencies": { + "lucide-react": "^0.453.0", "prop-types": "^15.8.1", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/src/components/Navbar/index.jsx b/src/components/Navbar/index.jsx index e0b8216..3d28b74 100644 --- a/src/components/Navbar/index.jsx +++ b/src/components/Navbar/index.jsx @@ -1,4 +1,4 @@ -import { Brand } from "./Brand" +import { Brand } from "./Brand"; import { Link } from "react-router-dom"; // Icons import TelegramIcon from "@/assets/icons/telegram.svg"; @@ -8,33 +8,38 @@ import HamburgerIcon from '@/assets/icons/menu.svg'; function CTAButtons() { return (
- - Join Group + + TelegramJoin Group - - Contribute + + GithubContribute
- ) + ); } - export default function Navbar() { return ( - ) -} \ No newline at end of file + ); +}