From ece876fd8826e796c710f2cebcf26e681e86a5cc Mon Sep 17 00:00:00 2001 From: Samrat Biswas Date: Sat, 15 Nov 2025 18:37:59 +0600 Subject: [PATCH] Replace button with link for GitHub contribution --- LandingPage/src/components/github.tsx | 39 ++++++++++++++++++--------- 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/LandingPage/src/components/github.tsx b/LandingPage/src/components/github.tsx index a1a33ff..2c1e153 100644 --- a/LandingPage/src/components/github.tsx +++ b/LandingPage/src/components/github.tsx @@ -1,17 +1,31 @@ -import styled from 'styled-components'; +import styled from "styled-components"; const Github = () => { return ( - + ); -} +}; const StyledWrapper = styled.div` .btn-github { @@ -30,19 +44,20 @@ const StyledWrapper = styled.div` line-height: 1rem; background-color: rgba(255, 255, 255, 0.19); - box-shadow: - inset 0 1px 0 0 rgba(255, 255, 255, 0.04), + box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.04); color: #fff; + + text-decoration: none; } .btn-github:hover { - box-shadow: - inset 0 1px 0 0 rgba(255, 255, 255, 0.08), + box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(252, 232, 3, 0.08); - color:rgb(152, 3, 252); + color: rgb(152, 3, 252); transform: translate(0, -0.25rem); background-color: rgba(0, 0, 0, 0.5); - }`; + } +`; export default Github;