@@ -12,10 +12,13 @@ import { Header } from '..'
1212import { AiOutlineGateway , AiOutlineFileImage , AiFillGithub , AiOutlineInstagram , AiOutlineTwitter , AiOutlineLink } from "react-icons/ai" ;
1313import { FiInstagram , FiTwitter , FiLink , FiPenTool , FiSearch , FiMousePointer , FiGithub } from "react-icons/fi" ;
1414
15+ // Images
16+ // import bannerBackgroundImage from '../../public/vercel.svg';
1517
1618// link
1719import Link from "next/link" ;
1820
21+ // Styled Component
1922import styled from "styled-components" ;
2023
2124// LandingBanner
@@ -26,6 +29,10 @@ const LandingBanner = styled.section`
2629 align-items: center;
2730 min-height: 100vh;
2831 background-color: var(--color-brand);
32+ // background-image: url(${ props => props . backgroundImage } );
33+ background-position: center center;
34+ background-repeat: no-repeat;
35+ background-size: cover;
2936` ;
3037
3138const BannerHeader = styled . div `
@@ -179,7 +186,7 @@ const SectionTitle = styled.div`
179186
180187const SectionFileTypes = styled . section `
181188 padding: 6rem 0;
182- background-color: rgba( var(--color-brand-rgb), 0.03 );
189+ background-color: var(--color-neutral-20 );
183190` ;
184191
185192const SectionContact = styled . section `
@@ -190,6 +197,16 @@ const SectionContact = styled.section`
190197const SectionContactCredits = styled . p `
191198 margin: 1rem 0;
192199 color: var(--color-neutral-80);
200+
201+ a {
202+ color: var(--color-brand);
203+ text-decoration: underline;
204+
205+ &:hover,
206+ &:focus {
207+ color: var(--color-brand-secondary);
208+ }
209+ }
193210` ;
194211
195212const SocialLinks = styled . div `
@@ -213,10 +230,10 @@ const SocialLinks = styled.div`
213230
214231 &:hover,
215232 &:focus {
216- background-color: rgba( var(--color-brand-rgb), 6% );
233+ background-color: var(--color-brand);
217234
218235 svg {
219- fill : var(--color-neutral-10);
236+ stroke : var(--color-neutral-10);
220237 }
221238 }
222239 }
@@ -276,7 +293,7 @@ const FeatureIconCardItem = styled.div`
276293 background: var(--color-neutral-10);
277294 border-radius: 1rem;
278295 padding: 3.2rem 2.8rem;
279- box-shadow: 3px 33px 81px 0 rgb(111 118 138 / 16%);
296+ box-shadow: 3px 33px 81px 0 rgb(111 118 138 / 16%);
280297
281298
282299 .card-icon {
@@ -325,9 +342,9 @@ const Landing = ({ setOpen, user, setUser }) => {
325342 < BannerHeader >
326343 < Logo > < AiOutlineGateway /> < div > TryShape</ div > </ Logo >
327344 < Navigation >
328- < a href = "#keyfeatures" > Key Features</ a >
329- < a href = "#filesupport" > File Support</ a >
330- < a href = "#contact" > Contact</ a >
345+ < a data-scroll href = "#keyfeatures" > Key Features</ a >
346+ < a data-scroll href = "#filesupport" > File Support</ a >
347+ < a data-scroll href = "#contact" > Contact</ a >
331348 </ Navigation >
332349 < ActionBar >
333350 < Link href = "/app" >
0 commit comments