Skip to content

Commit 2ad33e4

Browse files
committed
Add buttons to banner (hard coded)
1 parent c8b0162 commit 2ad33e4

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/app/pages/partners/partners.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ function Partners({data}) {
113113
<div className="text-block">
114114
<h1>{headline}</h1>
115115
<RawHTML html={description} />
116+
<div className="button-row">
117+
<a className="btn primary" href="/openstax-ally-technology-partner-program">Apply now</a>
118+
<a className="btn" href="/webinars/explore/collections/Ally%20Partners">Watch webinars</a>
119+
</div>
116120
</div>
117121
</div>
118122
<div

src/app/pages/partners/partners.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,20 @@
5252
}
5353
}
5454

55+
.button-row {
56+
margin-top: 4rem;
57+
display: flex;
58+
gap: 2rem;
59+
}
60+
61+
a.btn {
62+
@include button();
63+
64+
&.primary {
65+
@extend %primary;
66+
}
67+
}
68+
5569
.boxed {
5670
display: block;
5771

0 commit comments

Comments
 (0)