Skip to content

Commit bee3499

Browse files
authored
Merge pull request #90 from docusign/DEVDOCS-16600
add authentication text and styling
2 parents 2040a49 + 09ffb98 commit bee3499

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

client/public/locales/en/Home.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"Header1": "Welcome to the University Sample App",
33
"Header2": "Self-Service Student Portal",
4+
"Description": "Supports both Authorization Code Grant and JSON Web Token (JWT) authentication.",
45
"SandBoxButton": "Create Developer Account",
56
"LearnMoreButton": "Learn More",
67
"Card1": {

client/src/assets/scss/sections/_hero-section.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
color: $white;
1212
}
1313

14+
.description {
15+
color: $white;
16+
font-style: italic;
17+
}
18+
1419
.sub-title {
1520
color: $white;
1621
font-weight: $font-weight-bold;

client/src/features/Home/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export const Home = () => {
4343
<div className="container">
4444
<div className="hero-text">
4545
<h1 className="h1">{t("Header1")}</h1>
46+
<h3 className="description">{t("Description")}</h3>
4647
<span className="sub-title">{t("Header2")}</span>
4748
</div>
4849
</div>

0 commit comments

Comments
 (0)