This file contains hidden or 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
openapi: 3.0.0 | |
info: | |
version: 1.0.0 | |
title: xkcd | |
description: 'A webcomic of romance, sarcasm, math, and language.' | |
servers: | |
- url: https://xkcd.com/ | |
description: Official xkcd JSON interface |
This file contains hidden or 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
openapi: "3.0.0" | |
info: | |
title: Plausible Analytics Stats API | |
version: 1.0.0 | |
servers: | |
- url: https://plausible.io | |
paths: | |
/api/v1/stats/aggregate: | |
get: | |
summary: Aggregate Website Statistics |
This file contains hidden or 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 React from 'react'; | |
import { Elements } from 'prismic-richtext'; | |
import { Link as PrismicLink } from 'prismic-reactjs'; | |
import { Link as InternalLink, ExternalLink } from '../../components/'; | |
import linkResolver from './linkResolver'; | |
const SUBPATHS_OUTSIDE_GATSBY_MARKETING_ARCHITECTURE = [ | |
'https://www.yourdomain.com/community', | |
'https://www.yourdomain.com/docs', | |
]; |
This file contains hidden or 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 React from "react"; | |
import Head from "next/head"; | |
import Router from "next/router"; | |
import { GTMPageView } from "utilities/gtm"; | |
import { Client } from "prismic-configuration"; | |
import PrismicContext from "contexts/PrismicContext"; | |
// styling | |
import "../styles/index.css"; | |
import "slick-carousel/slick/slick.css"; |