diff --git a/app/pages/brand.tsx b/app/pages/brand.tsx index bd1c7764..dc630b37 100644 --- a/app/pages/brand.tsx +++ b/app/pages/brand.tsx @@ -1,11 +1,12 @@ import type { MetaFunction } from "@remix-run/node"; import classNames from "classnames"; -import type { FC } from "react"; export const meta: MetaFunction = () => { return [{ title: "React Router Assets and Branding Guidelines" }]; }; +const BRAND_DIR = "/_brand/React Router Brand Assets"; + export default function Brand() { return (
@@ -22,26 +23,62 @@ export default function Brand() {

You may not use the React Router name or logos in any way that could - mistakenly imply any official connection with or endorsement of Remix - Software Inc. Any use of the React Router name or logos in a manner that - could cause customer confusion is not permitted. + mistakenly imply any official connection with or endorsement of Shopify + Inc. Any use of the React Router name or logos in a manner that could + cause customer confusion is not permitted.

Additionally, you may not use our trademarks for t-shirts, stickers, or other merchandise without explicit written consent.

- Logo + + Download Assets

- Please use the logo with appropriate background. On dark backgrounds use - the logo with white dots, and on light backgrounds use the logo with - black dots. + You can download a zip file containing all the React Router brand + assets:

- - Logo Stacked -

For tighter horizontal spaces, the stacked logo is at your service.

- - Logo Mark - +

+ + React Router Brand Assets + +

+ + Lockup + Horizontal +
+ + +
+ Horizontal Stacked + + + + + Vertically Stacked + + + + + + Wordmark + Horizontal + + + + Stacked + + + + + Logo + + + +
); } @@ -54,159 +91,84 @@ function AssetHeader({ children }: { children: React.ReactNode }) { ); } -interface LogoProps { - fg: string; - highlight: string; -} - -function LogoBox({ - name, - Logo, -}: { - name: "react-router" | "react-router-stacked" | "react-router-mark"; - Logo: FC; -}) { - // Tailwind classnames for the various ways we style the individual - // component pieces of each LogoBox variant - let variants = { - color: { - bg: "bg-white", - border: "border-gray-50 dark:border-transparent", - fg: "fill-gray-900", - highlight: "fill-red-brand", - }, - "color-inverted": { - bg: "bg-gray-900", - border: "border-transparent dark:border-gray-800", - fg: "fill-white", - highlight: "fill-red-brand", - }, - monotone: { - bg: "bg-white", - border: "border-gray-50 dark:border-transparent", - fg: "fill-gray-900", - highlight: "fill-gray-900", - }, - "monotone-inverted": { - bg: "bg-gray-900", - border: "border-transparent dark:border-gray-800", - fg: "fill-white", - highlight: "fill-white", - }, - }; +function AssetSubHeader({ children }: { children: React.ReactNode }) { return ( -
- {Object.entries(variants).map( - ([variant, { bg, border, fg, highlight }]) => ( -
-
- -
-
- {["svg", "png"].map((format) => ( - - {format} - - ))} -
-
- ) - )} -
+

+ {children} +

); } -function LogoReactRouterMark({ fg, highlight }: LogoProps) { - return ( - - - - - - - ); +function AssetsGrid({ children }: { children: React.ReactNode }) { + return
{children}
; } -function LogoReactRouterStacked({ fg, highlight }: LogoProps) { +/** + * Creates the dark and light logos for a given asset. + */ +function Logos(props: { + title: "Lockup" | "Wordmark" | "Logo"; + subTitle?: string; + oneColor?: boolean; +}) { + let filePath = `${BRAND_DIR}/React Router ${props.title}`; + if (props.subTitle) { + filePath += `/${props.subTitle}`; + } + if (props.oneColor) { + filePath += `/One Color`; + } + return ( - - - - - - - - - - - - - - - - - + <> + + + ); } -function LogoReactRouter({ fg, highlight }: LogoProps) { +let background = { + dark: "bg-gray-600 bg-[linear-gradient(45deg,theme(colors.gray.700)_25%,transparent_25%,transparent_75%,theme(colors.gray.700)_75%,theme(colors.gray.700)),linear-gradient(45deg,theme(colors.gray.700)_25%,transparent_25%,transparent_75%,theme(colors.gray.700)_75%,theme(colors.gray.700))] bg-[length:16px_16px] bg-[position:0_0,8px_8px]", + light: + "bg-[linear-gradient(45deg,theme(colors.gray.200)_25%,transparent_25%,transparent_75%,theme(colors.gray.200)_75%,theme(colors.gray.200)),linear-gradient(45deg,theme(colors.gray.200)_25%,transparent_25%,transparent_75%,theme(colors.gray.200)_75%,theme(colors.gray.200))] bg-[length:16px_16px] bg-[position:0_0,8px_8px]", +}; + +function LogoBox({ + filePath, + theme, +}: { + filePath: string; + theme: "dark" | "light"; +}) { + // replace / with - for the alt text + const alt = filePath.replace(/\//g, " - "); + return ( - - - - - - - - - - - - - - - - - +
+
+ {alt} +
+
+ {["svg", "png"].map((format) => ( + + {format} + + ))} +
+
); } diff --git a/public/_brand/React Router Brand Assets.zip b/public/_brand/React Router Brand Assets.zip new file mode 100644 index 00000000..a491818e Binary files /dev/null and b/public/_brand/React Router Brand Assets.zip differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Dark.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Dark.png new file mode 100644 index 00000000..e8218592 Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Dark.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Dark.svg new file mode 100644 index 00000000..d1959395 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Dark.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Light.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Light.png new file mode 100644 index 00000000..353bd93a Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Light.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Light.svg new file mode 100644 index 00000000..b2a24ba3 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/Light.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Dark.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Dark.png new file mode 100644 index 00000000..7321946c Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Dark.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Dark.svg new file mode 100644 index 00000000..2b77666c --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Dark.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Light.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Light.png new file mode 100644 index 00000000..7cd792ca Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Light.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Light.svg new file mode 100644 index 00000000..4d8202d1 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal Stacked/One Color/Light.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Dark.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Dark.png new file mode 100644 index 00000000..8390f51f Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Dark.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Dark.svg new file mode 100644 index 00000000..5aeb01ca --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Dark.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Light.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Light.png new file mode 100644 index 00000000..ccade14c Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Light.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Light.svg new file mode 100644 index 00000000..d124810c --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/Light.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Dark.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Dark.png new file mode 100644 index 00000000..ace035a5 Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Dark.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Dark.svg new file mode 100644 index 00000000..ec1f4857 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Dark.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Light.png b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Light.png new file mode 100644 index 00000000..f69ff40f Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Light.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Light.svg new file mode 100644 index 00000000..fc0153bf --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Horizontal/One Color/Light.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Dark.png b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Dark.png new file mode 100644 index 00000000..876ec394 Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Dark.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Dark.svg new file mode 100644 index 00000000..6f72cd93 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Dark.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Light.png b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Light.png new file mode 100644 index 00000000..66f1fc05 Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Light.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Light.svg new file mode 100644 index 00000000..7c3668fc --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/Light.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Dark.png b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Dark.png new file mode 100644 index 00000000..c23f2dea Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Dark.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Dark.svg new file mode 100644 index 00000000..dcca138a --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Dark.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Light.png b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Light.png new file mode 100644 index 00000000..bc38ec98 Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Light.svg b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Light.svg new file mode 100644 index 00000000..d8d45888 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Lockup/Vertically Stacked/One Color/Light.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Logo/Dark.png b/public/_brand/React Router Brand Assets/React Router Logo/Dark.png new file mode 100644 index 00000000..d5807e3c Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Logo/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Logo/Dark.svg b/public/_brand/React Router Brand Assets/React Router Logo/Dark.svg new file mode 100644 index 00000000..20382fbd --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Logo/Dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Logo/Light.png b/public/_brand/React Router Brand Assets/React Router Logo/Light.png new file mode 100644 index 00000000..12c350ac Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Logo/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Logo/Light.svg b/public/_brand/React Router Brand Assets/React Router Logo/Light.svg new file mode 100644 index 00000000..ed93e1e5 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Logo/Light.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Logo/One Color/Dark.png b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Dark.png new file mode 100644 index 00000000..02cc076c Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Logo/One Color/Dark.svg b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Dark.svg new file mode 100644 index 00000000..44a11240 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Logo/One Color/Light.png b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Light.png new file mode 100644 index 00000000..46b9026b Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Logo/One Color/Light.svg b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Light.svg new file mode 100644 index 00000000..9a0bced7 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Logo/One Color/Light.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Dark.png b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Dark.png new file mode 100644 index 00000000..8ba5eb8a Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Dark.svg b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Dark.svg new file mode 100644 index 00000000..ef852838 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Dark.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Light.png b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Light.png new file mode 100644 index 00000000..941c2dc6 Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Light.svg b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Light.svg new file mode 100644 index 00000000..d41dd9f9 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Wordmark/Horizontal/Light.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Dark.png b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Dark.png new file mode 100644 index 00000000..1ea6699a Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Dark.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Dark.svg b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Dark.svg new file mode 100644 index 00000000..a5418688 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Dark.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Light.png b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Light.png new file mode 100644 index 00000000..a604eaaf Binary files /dev/null and b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Light.png differ diff --git a/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Light.svg b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Light.svg new file mode 100644 index 00000000..f1840866 --- /dev/null +++ b/public/_brand/React Router Brand Assets/React Router Wordmark/Stacked/Light.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/_brand/react-router-color-inverted.png b/public/_brand/react-router-color-inverted.png deleted file mode 100644 index d83f2967..00000000 Binary files a/public/_brand/react-router-color-inverted.png and /dev/null differ diff --git a/public/_brand/react-router-color-inverted.svg b/public/_brand/react-router-color-inverted.svg deleted file mode 100644 index bb34bd10..00000000 --- a/public/_brand/react-router-color-inverted.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-color.png b/public/_brand/react-router-color.png deleted file mode 100644 index 112570f1..00000000 Binary files a/public/_brand/react-router-color.png and /dev/null differ diff --git a/public/_brand/react-router-color.svg b/public/_brand/react-router-color.svg deleted file mode 100644 index 2c7438c5..00000000 --- a/public/_brand/react-router-color.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-mark-color-inverted.png b/public/_brand/react-router-mark-color-inverted.png deleted file mode 100644 index 7b76625c..00000000 Binary files a/public/_brand/react-router-mark-color-inverted.png and /dev/null differ diff --git a/public/_brand/react-router-mark-color-inverted.svg b/public/_brand/react-router-mark-color-inverted.svg deleted file mode 100644 index 4ee80835..00000000 --- a/public/_brand/react-router-mark-color-inverted.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/public/_brand/react-router-mark-color.png b/public/_brand/react-router-mark-color.png deleted file mode 100644 index 2cd12f6f..00000000 Binary files a/public/_brand/react-router-mark-color.png and /dev/null differ diff --git a/public/_brand/react-router-mark-color.svg b/public/_brand/react-router-mark-color.svg deleted file mode 100644 index 77825756..00000000 --- a/public/_brand/react-router-mark-color.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/public/_brand/react-router-mark-monotone-inverted.png b/public/_brand/react-router-mark-monotone-inverted.png deleted file mode 100644 index 061978dc..00000000 Binary files a/public/_brand/react-router-mark-monotone-inverted.png and /dev/null differ diff --git a/public/_brand/react-router-mark-monotone-inverted.svg b/public/_brand/react-router-mark-monotone-inverted.svg deleted file mode 100644 index b6035d39..00000000 --- a/public/_brand/react-router-mark-monotone-inverted.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/public/_brand/react-router-mark-monotone.png b/public/_brand/react-router-mark-monotone.png deleted file mode 100644 index ec875a0c..00000000 Binary files a/public/_brand/react-router-mark-monotone.png and /dev/null differ diff --git a/public/_brand/react-router-mark-monotone.svg b/public/_brand/react-router-mark-monotone.svg deleted file mode 100644 index a73f6767..00000000 --- a/public/_brand/react-router-mark-monotone.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/public/_brand/react-router-monotone-inverted.png b/public/_brand/react-router-monotone-inverted.png deleted file mode 100644 index 54d185c8..00000000 Binary files a/public/_brand/react-router-monotone-inverted.png and /dev/null differ diff --git a/public/_brand/react-router-monotone-inverted.svg b/public/_brand/react-router-monotone-inverted.svg deleted file mode 100644 index d4183cad..00000000 --- a/public/_brand/react-router-monotone-inverted.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-monotone.png b/public/_brand/react-router-monotone.png deleted file mode 100644 index 80ab7a3c..00000000 Binary files a/public/_brand/react-router-monotone.png and /dev/null differ diff --git a/public/_brand/react-router-monotone.svg b/public/_brand/react-router-monotone.svg deleted file mode 100644 index 9fdbbe56..00000000 --- a/public/_brand/react-router-monotone.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-stacked-color-inverted.png b/public/_brand/react-router-stacked-color-inverted.png deleted file mode 100644 index 732cd1ee..00000000 Binary files a/public/_brand/react-router-stacked-color-inverted.png and /dev/null differ diff --git a/public/_brand/react-router-stacked-color-inverted.svg b/public/_brand/react-router-stacked-color-inverted.svg deleted file mode 100644 index 88ac8b77..00000000 --- a/public/_brand/react-router-stacked-color-inverted.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-stacked-color.png b/public/_brand/react-router-stacked-color.png deleted file mode 100644 index bd21de7d..00000000 Binary files a/public/_brand/react-router-stacked-color.png and /dev/null differ diff --git a/public/_brand/react-router-stacked-color.svg b/public/_brand/react-router-stacked-color.svg deleted file mode 100644 index 9f46b557..00000000 --- a/public/_brand/react-router-stacked-color.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-stacked-monotone-inverted.png b/public/_brand/react-router-stacked-monotone-inverted.png deleted file mode 100644 index 752093cf..00000000 Binary files a/public/_brand/react-router-stacked-monotone-inverted.png and /dev/null differ diff --git a/public/_brand/react-router-stacked-monotone-inverted.svg b/public/_brand/react-router-stacked-monotone-inverted.svg deleted file mode 100644 index 5c1e75fd..00000000 --- a/public/_brand/react-router-stacked-monotone-inverted.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/public/_brand/react-router-stacked-monotone.png b/public/_brand/react-router-stacked-monotone.png deleted file mode 100644 index 642b5483..00000000 Binary files a/public/_brand/react-router-stacked-monotone.png and /dev/null differ diff --git a/public/_brand/react-router-stacked-monotone.svg b/public/_brand/react-router-stacked-monotone.svg deleted file mode 100644 index 39c716a5..00000000 --- a/public/_brand/react-router-stacked-monotone.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - -