Skip to content

Commit 050d2f2

Browse files
committed
website footer
Signed-off-by: Piotr PG Gajek <[email protected]>
1 parent 96b9ef6 commit 050d2f2

File tree

3 files changed

+86
-14
lines changed

3 files changed

+86
-14
lines changed

website/docusaurus.config.js

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ const config = {
4949
({
5050
// Replace with your project's social card
5151
image: 'img/cloud-icon.png',
52+
metadata: [
53+
{ name: 'description', content: 'SOQL Lib provides functional constructs for SOQL queries in Apex.' },
54+
{ name: 'keywords', content: 'SOQL Lib, Selector Layer Apex, Apex Selector Layer, Query Builder' },
55+
{ name: 'canonical', content: 'https://soql.beyondthecloud.dev' }
56+
],
5257
navbar: {
5358
title: 'SOQL Lib',
5459
logo: {
@@ -104,6 +109,73 @@ const config = {
104109
return items.filter(item => !item.url.includes('/page/'));
105110
}
106111
},
112+
footer: {
113+
style: 'dark',
114+
links: [
115+
{
116+
items: [
117+
{
118+
html: `
119+
<a href="https://beyondthecloud.dev" target="_blank" aria-label="Beyond The Cloud">
120+
<img src="/img/logo.png" alt="Professional Salesforce Services - Beyond The Cloud" width="167" height="88" />
121+
</a>
122+
<p>
123+
124+
<br /><br />
125+
We are a Salesforce Partner specializing in AppExchange app development and technical debt emergency resolution
126+
</p>
127+
`
128+
}
129+
]
130+
},
131+
{
132+
title: 'Documentation',
133+
items: [
134+
{
135+
label: 'Installation',
136+
to: '/installation'
137+
},
138+
{
139+
label: 'Building Your Selector',
140+
to: '/building-your-selector'
141+
},
142+
{
143+
label: 'Building Cached Selector',
144+
to: '/build-cached-selector'
145+
},
146+
{
147+
label: 'Overview',
148+
to: '/overview'
149+
}
150+
]
151+
},
152+
{
153+
items: [
154+
{
155+
label: 'Linkedin',
156+
href: 'https://www.linkedin.com/company/beyondtheclouddev'
157+
},
158+
{
159+
label: 'Beyond The Cloud',
160+
href: 'https://beyondthecloud.dev/'
161+
},
162+
{
163+
label: 'Blog',
164+
href: 'https://blog.beyondthecloud.dev/blog'
165+
},
166+
{
167+
label: 'Learning',
168+
href: 'https://learning.beyondthecloud.dev/blog'
169+
},
170+
{
171+
label: 'GitHub',
172+
href: 'https://github.com/beyond-the-cloud-dev'
173+
}
174+
]
175+
}
176+
],
177+
copyright: `Copyright © ${new Date().getFullYear()} BeyondTheCloud`
178+
},
107179
prism: {
108180
additionalLanguages: ['apex'],
109181
theme: prismThemes.dracula,

website/src/css/custom.css

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66

77
/* You can override the default Infima variables here. */
88
:root {
9-
--ifm-color-primary: #0276d3;
10-
--ifm-color-primary-dark: #29784c;
11-
--ifm-color-primary-darker: #277148;
12-
--ifm-color-primary-darkest: #205d3b;
13-
--ifm-color-primary-light: #33925d;
14-
--ifm-color-primary-lighter: #359962;
15-
--ifm-color-primary-lightest: #3cad6e;
9+
--ifm-color-primary: #1c93c8;
10+
--ifm-color-primary-dark: #1984b4;
11+
--ifm-color-primary-darker: #187daa;
12+
--ifm-color-primary-darkest: #14678c;
13+
--ifm-color-primary-light: #1fa2dc;
14+
--ifm-color-primary-lighter: #26a7e1;
15+
--ifm-color-primary-lightest: #44b3e5;
1616
--ifm-code-font-size: 95%;
1717
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
1818
}
1919

2020
/* For readability concerns, you should choose a lighter palette in dark mode. */
2121
[data-theme="dark"] {
22-
--ifm-color-primary: #0276d3;
23-
--ifm-color-primary-dark: #21af90;
24-
--ifm-color-primary-darker: #1fa588;
25-
--ifm-color-primary-darkest: #1a8870;
26-
--ifm-color-primary-light: #29d5b0;
27-
--ifm-color-primary-lighter: #32d8b4;
28-
--ifm-color-primary-lightest: #4fddbf;
22+
--ifm-color-primary: #1c93c8;
23+
--ifm-color-primary-dark: #1984b4;
24+
--ifm-color-primary-darker: #187daa;
25+
--ifm-color-primary-darkest: #14678c;
26+
--ifm-color-primary-light: #1fa2dc;
27+
--ifm-color-primary-lighter: #26a7e1;
28+
--ifm-color-primary-lightest: #44b3e5;
2929
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
3030
}

website/static/img/logo.png

25.3 KB
Loading

0 commit comments

Comments
 (0)