From d5b4d35c0c73715ae4c2a69bc920926016fb8ddf Mon Sep 17 00:00:00 2001 From: Ashley Hannigan Date: Sat, 27 Jul 2024 15:30:08 -0400 Subject: [PATCH] landing page basic styling and info, missing tommys info fully --- .../components/LandingPage/MeetTheTeam.tsx | 34 +++++++++++++------ flake-guard-app/src/styles/landingPage.css | 13 ++++--- 2 files changed, 33 insertions(+), 14 deletions(-) diff --git a/flake-guard-app/src/client/components/LandingPage/MeetTheTeam.tsx b/flake-guard-app/src/client/components/LandingPage/MeetTheTeam.tsx index 8927bc9..0fd8ae9 100644 --- a/flake-guard-app/src/client/components/LandingPage/MeetTheTeam.tsx +++ b/flake-guard-app/src/client/components/LandingPage/MeetTheTeam.tsx @@ -6,54 +6,68 @@ import ashley from '../../assets/ashley.png'; import paloma from '../../assets/paloma.png'; import will from '../../assets/will.png'; import brendan from '../../assets/brendan.png'; +import linkedInLogo from '../../assets/linkedinlogo.png'; +//NEEDING TOMMY INFO -> LINKEDIN AND IMAGE +//STRETCH FEATURES -> WHEN CLICKING OUR TEAM -> GET DIRECTED TO THIS SPOT ON THE PAGE] + const TeamMember = () => { const name= ["Ashley", "Paloma", "Tommy", "Brendan", "Will"]; const role="Full Stack Developer" return ( <> -
+
{name[0]}

{name[0]}

{role}

-

https://www.linkedin.com/in/ashley-hannigan-88-/

+ + + {/* Add social links here */}
-
+
{name[1]}

{name[1]}

{role}

-

https://www.linkedin.com/in/palomareynolds/

+ + + {/* Add social links here */}
-
+
{name[2]}

{name[2]}

{role}

-

https://www.linkedin.com/in/ashley-hannigan-88-/

+ + + {/* Add social links here */}
-
+
{name[3]}

{name[3]}

{role}

-

https://www.linkedin.com/in/ashley-hannigan-88-/

+ + + {/* Add social links here */}
-
+
{name[4]}

{name[4]}

{role}

-

https://www.linkedin.com/in/willsuto/

+ + + {/* Add social links here */}
diff --git a/flake-guard-app/src/styles/landingPage.css b/flake-guard-app/src/styles/landingPage.css index 0970271..b523eba 100644 --- a/flake-guard-app/src/styles/landingPage.css +++ b/flake-guard-app/src/styles/landingPage.css @@ -73,12 +73,12 @@ /*TEAM CSS*/ -#ashley-avatar:hover, #paloma-avatar:hover, #will-avatar:hover, #brendan-avatar:hover, #tommy-avatar:hover{ -transform: scale(1.2); - +#avatars:hover{ + background-color: #457f3e; + border-radius: 10px; + box-shadow: 5px 5px 5px #457f3e; } - .team { text-align: center; padding: 50px 0; @@ -106,4 +106,9 @@ transform: scale(1.2); border-radius: 50%; object-fit: cover; } + + #linkedinlogo{ + width: 2rem; + height: 2rem; + } \ No newline at end of file