Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 2,
"color-no-invalid-hex": true
}
}
22 changes: 14 additions & 8 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,22 @@ const config: Config = {
//image: 'img/docusaurus-social-card.jpg',
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
headTags: [

{
tagName: 'link',
attributes: {
rel: 'alternate',
type: 'application/rss+xml',
title: 'RSS Feed',
href: '/rss.xml',
type: 'application/atom+xml',
title: 'Atom Feed',
href: '/atom.xml',
},
},
],
navbar: {
title: "",
logo: {
alt: "QuantStack Logo",
src: "img/quantstack/logo-website.svg",
src: "img/quantstack/logo-website-smaller.svg",
},

items: [
Expand Down Expand Up @@ -111,9 +112,15 @@ const config: Config = {
label: "Blog",
position: "left",
},
{
to: "/fundable/",
label: "Fundable projects",
position: "right",
className:"fundable_projects"
},
{
to: "/contact/",
label: "CONTACT US",
label: "Contact us",
position: "right",
className: "contact",
},
Expand Down Expand Up @@ -147,10 +154,9 @@ const config: Config = {
target: "_blank",
className: "mastodon-icon",
},

{
to: "rss.xml",
title: "RSS",
to: "atom.xml",
title: "Atom",
position: "right",
target: "_blank",
className: "rss-circle-icon",
Expand Down
Loading