-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from mevlutcantuna/implement-second-section-of…
…-landing-page implemented second section of landing page
- Loading branch information
Showing
7 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import Image from "next/image"; | ||
|
||
const Testimonial = () => { | ||
return ( | ||
<section className="testimonial-section"> | ||
<div className="testimonial"> | ||
<Image | ||
width={140} | ||
height={40} | ||
alt="grubu-logo" | ||
src="/gurubu-logo.svg" | ||
/> | ||
<p className="testimonial__text"> | ||
I was looking for an application that could quickly determine story | ||
points without registration, and I finally found it. | ||
</p> | ||
<div className="testimonial__owner"> | ||
<Image | ||
src="/testimonial-avatar.png" | ||
width={64} | ||
height={64} | ||
alt="testmonial-avatar" | ||
/> | ||
<span className="testimonial__owner__name">Cihat Bilgiç</span> | ||
<span className="testimonial__owner__title"> | ||
Product Owner, Trendyol | ||
</span> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Testimonial; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.testimonial-section{ | ||
width: 100%; | ||
margin: $space-xxxxlarge 0; | ||
padding: 0 $space-xxlarge; | ||
|
||
.testimonial{ | ||
max-width: 1280px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
gap: $space-xxlarge 0; | ||
margin: 0 auto; | ||
|
||
&__text{ | ||
font-size: $font-size-body-2; | ||
font-weight: $medium; | ||
line-height: $line-height-header-3; | ||
text-align: center; | ||
|
||
@include media(xl){ | ||
font-size: $font-size-body-1; | ||
line-height: $line-height-header-2; | ||
} | ||
} | ||
|
||
&__owner{ | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
|
||
&__name{ | ||
margin: $space-large 0 $space-xsmall 0; | ||
font-size: $font-size-paragraph-2; | ||
font-weight: $semibold; | ||
} | ||
|
||
&__title{ | ||
color: #475467; | ||
line-height: $line-height-paragraph-4; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters