diff --git a/website/src/components/scarf/Scarf.jsx b/website/src/components/scarf/Scarf.jsx
new file mode 100644
index 00000000..84e6e118
--- /dev/null
+++ b/website/src/components/scarf/Scarf.jsx
@@ -0,0 +1,13 @@
+import React from 'react'
+
+const ScarfTag = () => {
+ return (
+
+ )
+}
+
+export { ScarfTag }
diff --git a/website/src/components/scarf/index.js b/website/src/components/scarf/index.js
new file mode 100644
index 00000000..32b87524
--- /dev/null
+++ b/website/src/components/scarf/index.js
@@ -0,0 +1 @@
+export * from './Scarf'
diff --git a/website/src/theme/Footer/index.js b/website/src/theme/Footer/index.js
new file mode 100644
index 00000000..79c37a22
--- /dev/null
+++ b/website/src/theme/Footer/index.js
@@ -0,0 +1,167 @@
+/**
+ * Copyright (c) Facebook, Inc. and its affiliates.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+import React from 'react'
+import clsx from 'clsx'
+import Link from '@docusaurus/Link'
+import { useThemeConfig } from '@docusaurus/theme-common'
+import useBaseUrl from '@docusaurus/useBaseUrl'
+import isInternalUrl from '@docusaurus/isInternalUrl'
+import styles from './styles.module.css'
+import ThemedImage from '@theme/ThemedImage'
+import IconExternalLink from '@theme/IconExternalLink'
+import { ScarfTag } from '../../components/scarf'
+
+function FooterLink({ to, href, label, prependBaseUrlToHref, ...props }) {
+ const toUrl = useBaseUrl(to)
+ const normalizedHref = useBaseUrl(href, {
+ forcePrependBaseUrl: true
+ })
+ return (
+
+ {href && !isInternalUrl(href) ? (
+
+ {label}
+