This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--atomic-font-family: 'Inter', -apple-system, BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu','Cantarell','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; | |
/* Primary colors */ | |
--atomic-primary-light: #1372ec; /* Used for hover of Facet Titles, Search Box hover, checked boxes hover */ | |
/* Neutral colors */ | |
--atomic-neutral-dark: #232425; /* Used for hover colors, excerpt, (count), and checkbox outline */ | |
/* Semantic colors */ | |
--atomic-on-background: #282829; | |
--atomic-success: #1372ec; | |
--atomic-error: red; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
AtomicBreadbox, | |
AtomicColorFacet, | |
AtomicDidYouMean, | |
AtomicFacet, | |
AtomicFacetManager, | |
AtomicLayoutSection, | |
AtomicLoadMoreResults, | |
AtomicNoResults, | |
AtomicNumericFacet, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const siteUrl = "https://www.marnochastudios.com" | |
module.exports = { | |
siteUrl, | |
generateRobotsTxt: true, | |
robotsTxtOptions: { | |
policies: [ | |
{ userAgent: "*", allow: "/" }, | |
], | |
additionalSitemaps: [`${siteUrl}/server-sitemap.xml`] |