Skip to content

Commit

Permalink
Update about, community, and case-study pages with trademark
Browse files Browse the repository at this point in the history
  • Loading branch information
kai-tillman committed Feb 13, 2024
1 parent 11d97b6 commit 5f69658
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 54 deletions.
27 changes: 18 additions & 9 deletions src/components/CaseStudyTemplate/CaseStudyTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,24 @@ const CaseStudyTemplate = ({ caseStudy, children }) => {
{children}
</div>
</section>
<section className={classnames('purpleBackground', 'caseStudyFooter')}>
<h4>Questions?</h4>
<p>Let us help you get started</p>
<a className="btn-purple-light" href="/docs/latest/quick-start/">
get started
</a>
</section>
</>
);
<section className={classnames('purpleBackground', 'caseStudyFooter')}>
<h4>Questions?</h4>
<p>Let us help you get started</p>
<a className="btn-purple-light" href="/docs/latest/quick-start/">
get started
</a>
<div className="trademarkUsage">
<p>
The Linux Foundation has registered trademarks and uses trademarks.
For a list of trademarks of The Linux Foundation,
please see our <a
href="https://www.linuxfoundation.org/legal/trademark-usage">Trademark
Usage page</a>.
</p>
</div>
</section>
</>
);
};

export default CaseStudyTemplate;
4 changes: 4 additions & 0 deletions src/components/CaseStudyTemplate/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,8 @@
padding-top: 5.625rem;
padding-bottom: 5.625rem;
}

.trademarkUsage {
margin-top: 5rem;
}
}
40 changes: 25 additions & 15 deletions src/pages/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,29 @@ export default function AboutPage({ location }) {
/>
</div>
</section>
<section className="aboutPageStayUpdated">
<h4>Stay Updated</h4>
<p>
Telepresence is under active development. Subscribe to get updates and
announcements:
</p>
<div className="aboutPageHubspotForm">
<HubspotForm
portalId="485087"
formId="956287a4-7614-486b-91bd-28c9a91949cb"
/>
</div>
</section>
</EasyLayout>
);
<section className="aboutPageStayUpdated">
<h4>Stay Updated</h4>
<p>
Telepresence is under active development. Subscribe to get updates and
announcements:
</p>
<div className="aboutPageHubspotForm">
<HubspotForm
portalId="485087"
formId="956287a4-7614-486b-91bd-28c9a91949cb"
/>
</div>
<div className="trademarkUsage">
<p>
The Linux Foundation has registered trademarks and uses
trademarks.
For a list of trademarks of The Linux Foundation,
please see our <a
href="https://www.linuxfoundation.org/legal/trademark-usage">Trademark
Usage page</a>.
</p>
</div>
</section>
</EasyLayout>
);
}
43 changes: 27 additions & 16 deletions src/pages/case-studies/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,31 @@ export default function CaseStudiesPage({ location }) {
))}
</div>
</section>
<section
className={classnames('caseStudiesPageSection', 'purpleBackground')}
>
<div className="caseStudiesPageSection-contact">
<h4>Have a Telepresence story to share?</h4>
<p>Tell us your story</p>
<a
className="btn-purple-light"
href="https://www.getambassador.io/contact-us/"
>
contact us
</a>
</div>
</section>
</EasyLayout>
);
<section
className={classnames('caseStudiesPageSection', 'purpleBackground')}
>
<div className="caseStudiesPageSection-contact">
<h4>Have a Telepresence story to share?</h4>
<p>Tell us your story</p>
<a
className="btn-purple-light"
href="https://www.getambassador.io/contact-us/"
>
contact us
</a>
<div className="trademarkUsage">
<p>
The Linux Foundation has registered trademarks and uses
trademarks.
For a list of trademarks of The Linux Foundation,
please see our <a
href="https://www.linuxfoundation.org/legal/trademark-usage">Trademark
Usage page</a>.
</p>
</div>
</div>

</section>
</EasyLayout>
);
}
38 changes: 24 additions & 14 deletions src/pages/community.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,28 @@ export default function CommunityPage({ location }) {
</div>
</div>
</section>
<section className="communityPageSection purpleLight">
<div className="communityPageSection-socialCards">
<h2 className="communityPageSection-exploreTitle">
Explore and Contribute to Our Networks
</h2>
<div className="communityPageSection-socialCards-container">
{SOCIAL_CARDS.map((card, index) => (
<SocialCard key={index} {...card} />
))}
</div>
</div>
</section>
</EasyLayout>
);
<section className="communityPageSection purpleLight">
<div className="communityPageSection-socialCards">
<h2 className="communityPageSection-exploreTitle">
Explore and Contribute to Our Networks
</h2>
<div className="communityPageSection-socialCards-container">
{SOCIAL_CARDS.map((card, index) => (
<SocialCard key={index} {...card} />
))}
</div>
<div className="trademarkUsage">
<p>
The Linux Foundation has registered trademarks and uses
trademarks.
For a list of trademarks of The Linux Foundation,
please see our <a
href="https://www.linuxfoundation.org/legal/trademark-usage">Trademark
Usage page</a>.
</p>
</div>
</div>
</section>
</EasyLayout>
);
}

0 comments on commit 5f69658

Please sign in to comment.