@@ -17,7 +17,17 @@ import IconSvg from '../../public/images/icon-svg.svg';
1717import IconCss from '../../public/images/icon-css.svg' ;
1818
1919// icon
20- import { FiMenu , FiLinkedin , FiTwitter , FiShare , FiShare2 , FiPenTool , FiSearch , FiMail , FiGithub } from "react-icons/fi" ;
20+ import {
21+ FiMenu ,
22+ FiLinkedin ,
23+ FiTwitter ,
24+ FiShare ,
25+ FiShare2 ,
26+ FiPenTool ,
27+ FiSearch ,
28+ FiMail ,
29+ FiGithub ,
30+ FiYoutube } from "react-icons/fi" ;
2131
2232// link
2333import Link from "next/link" ;
@@ -31,7 +41,7 @@ const LandingBanner = styled.section`
3141 display: flex;
3242 justify-content: center;
3343 align-items: center;
34- min-height: calc( 100vh - 74px) ;
44+ min-height: 100vh;
3545 background-color: var(--color-brand);
3646 background: rgb(93,33,210);
3747 background: linear-gradient(180deg, rgba(93,33,210,1) 0%, rgba(175,33,210,1) 100%);
@@ -56,7 +66,7 @@ const LandingBanner = styled.section`
5666
5767const BannerHeader = styled ( Navbar ) `
5868 padding: 1rem 1.8rem !important;
59- background-color: var(--color-brand);
69+ background-color: rgba( var(--color-brand-rgb), 0.86 );
6070
6171 .navbar-toggler:hover,
6272 .navbar-toggler:focus {
@@ -417,7 +427,7 @@ const Landing = ({ setOpen, user, setUser }) => {
417427
418428 return (
419429 < div >
420- < BannerHeader sticky = "top" expand = "md" >
430+ < BannerHeader fixed = "top" expand = "md" >
421431 < Navbar . Brand > < Logo > < div className = "sr-only" > TryShape</ div > </ Logo > </ Navbar . Brand >
422432 < Navbar . Toggle >
423433 < FiMenu color = "var(--color-neutral-10" size = "24px" />
@@ -547,12 +557,13 @@ const Landing = ({ setOpen, user, setUser }) => {
547557 < SectionContact id = "contact" >
548558 < Container >
549559 < SocialLinks >
550- < a href = "#" > < FiGithub /> </ a >
551- < a href = "#" > < FiTwitter /> </ a >
552- < a href = "#" > < FiLinkedin /> </ a >
553- < a href = "#" > < FiMail /> </ a >
560+ < a href = "https://github.com/TryShape" target = "_blank" > < FiGithub /> </ a >
561+ < a href = "https://twitter.com/tapasadhikary" target = "_blank" > < FiTwitter /> </ a >
562+ < a href = "https://www.linkedin.com/in/tapasadhikary/" target = "_blank" > < FiLinkedin /> </ a >
563+ < a href = "https://www.youtube.com/c/TapasAdhikary/featured" > < FiYoutube /> </ a >
564+ < a href = "mailto:tapas.adhikary@gmail.com" > < FiMail /> </ a >
554565 </ SocialLinks >
555- < SectionContactCredits className = "text-center" > < small > TryShape is an opensource project developed by < a href = "# " > Tapas Adhikary</ a > and friends.</ small > </ SectionContactCredits >
566+ < SectionContactCredits className = "text-center" > < small > TryShape is an opensource project developed by < a href = "https://tapasadhikary.com/" target = "_blank "> Tapas Adhikary</ a > and friends.</ small > </ SectionContactCredits >
556567 </ Container >
557568 </ SectionContact >
558569 </ div >
0 commit comments