Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new rotationalio page links to footer #824

Merged
merged 2 commits into from Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions web/beacon-app/src/application/routes/paths.ts
Expand Up @@ -73,4 +73,6 @@ export const EXTERNAL_LINKS = {
DOCS: 'https://ensign.rotational.dev/getting-started/',
SUPPORT: 'support@rotational.io',
PROTECT_API_KEYS_VIDEO: 'https://youtu.be/EEpIDkKJopY',
ENSIGN_PRICING: 'https://rotational.io/ensign-pricing/',
RESOURCES: 'https://rotational.io/resources/',
};
45 changes: 37 additions & 8 deletions web/beacon-app/src/components/auth/LandingFooter/LandingFooter.tsx
Expand Up @@ -19,9 +19,14 @@ function LandingFooter() {
<li>
<a href={ROUTES.HOME}>Ensign</a>
</li>
<li>
<a href={EXTERNAL_LINKS.ENSIGN_PRICING} target="_blank" rel="noreferrer">
Pricing
</a>
</li>
<li>
<a href={EXTERNAL_LINKS.DOCUMENTATION} target="_blank" rel="noreferrer">
Documentation
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Documentation looked really long after adding Pricing. Shortening the word to Docs makes it more in line with the others and it's common to see Docs used on other sites.

Docs
</a>
</li>
<li>
Expand All @@ -40,24 +45,44 @@ function LandingFooter() {
<h3 className="font-light">COMPANY</h3>
<ul>
<li>
<a href={EXTERNAL_LINKS.SERVICES}>Services</a>
<a href={EXTERNAL_LINKS.SERVICES} target="_blank" rel="noreferrer">
Services
</a>
</li>
<li>
<a href={EXTERNAL_LINKS.BLOG}>Blog</a>
<a href={EXTERNAL_LINKS.BLOG} target="_blank" rel="noreferrer">
Blog
</a>
</li>
<li>
<a href={EXTERNAL_LINKS.ABOUT}>About</a>
<a href={EXTERNAL_LINKS.ABOUT} target="_blank" rel="noreferrer">
About
</a>
</li>
</ul>
</div>
<div className="pt-4 font-bold leading-loose">
<h3 className="font-light">COMMUNITY</h3>
<ul>
<li>
<a href={EXTERNAL_LINKS.DATA_PLAYGROUND}>Data Playground</a>
<a href={EXTERNAL_LINKS.ENSIGN_UNIVERSITY} target="_blank" rel="noreferrer">
Ensign U
</a>
</li>
<li>
<a href={EXTERNAL_LINKS.DATA_PLAYGROUND} target="_blank" rel="noreferrer">
Data Playground
</a>
</li>
<li>
<a href={EXTERNAL_LINKS.OPEN_SOURCE}>Open Source</a>
<a href={EXTERNAL_LINKS.OPEN_SOURCE} target="_blank" rel="noreferrer">
Open Source
</a>
</li>
<li>
<a href={EXTERNAL_LINKS.RESOURCES} target="_blank" rel="noreferrer">
Resources
</a>
</li>
</ul>
</div>
Expand Down Expand Up @@ -114,10 +139,14 @@ function LandingFooter() {

<ul className="mt-4 flex sm:mt-0">
<li className="mr-4 border-r pr-4">
<a href={EXTERNAL_LINKS.PRIVACY}>Privacy Policy</a>
<a href={EXTERNAL_LINKS.PRIVACY} target="_blank" rel="noreferrer">
Privacy Policy
</a>
</li>
<li className="">
<a href={EXTERNAL_LINKS.TERMS}>Terms of Use</a>
<a href={EXTERNAL_LINKS.TERMS} target="_blank" rel="noreferrer">
Terms of Use
</a>
</li>
</ul>
</div>
Expand Down