diff --git a/pages/about/branding.md b/pages/about/branding.md new file mode 100644 index 00000000..eda3aca4 --- /dev/null +++ b/pages/about/branding.md @@ -0,0 +1,58 @@ +# Branding of webpack + +Here you can find **webpack** project brand guidelines and assets. Official artwork is maintained in the OpenJS Foundation [artwork repository](https://github.com/openjs-foundation/artwork/tree/main/projects/webpack). + +Please review the [OpenJS Foundation Trademark Policy](https://trademark-policy.openjsf.org/) for information about permissible use of webpack™ logos and marks. + +## The Name + +Webpack can be written with a capital **W** when used at the start of a sentence, otherwise it should be written in lower-case letters. + +## webpack Logos + +Please use the **logo with text** whenever possible. The logo should be placed on its matching background with enough space around it. Double the size of the inner dark blue cube to get an idea of how much space the logo should have. + +### Horizontal logo + +| Light backgrounds | Dark backgrounds | +| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| ![webpack horizontal logo for light backgrounds](https://raw.githubusercontent.com/openjs-foundation/artwork/main/projects/webpack/webpack-logo-horizontal-color.png) | ![webpack horizontal logo for dark backgrounds](https://raw.githubusercontent.com/openjs-foundation/artwork/main/projects/webpack/webpack-logo-horizontal-color-dark_background.png) | +| [svg](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-horizontal-color.svg) \| [png](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-horizontal-color.png) | [svg](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-horizontal-color-dark_background.svg) \| [png](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-horizontal-color-dark_background.png) | + +### Stacked logo + +| Light backgrounds | Dark backgrounds | +| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| ![webpack stacked logo for light backgrounds](https://raw.githubusercontent.com/openjs-foundation/artwork/main/projects/webpack/webpack-logo-stacked-color.png) | ![webpack stacked logo for dark backgrounds](https://raw.githubusercontent.com/openjs-foundation/artwork/main/projects/webpack/webpack-logo-stacked-color-dark_background.png) | +| [svg](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-stacked-color.svg) \| [png](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-stacked-color.png) | [svg](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-stacked-color-dark_background.svg) \| [png](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-logo-stacked-color-dark_background.png) | + +## webpack Icons + +The icon is designed to be used in **layout-constrained areas only**. As previously stated, please prefer the logo with text. + +| Icon (avatars, profile pictures, favicons) | Hex sticker | +| :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| ![webpack icon](https://raw.githubusercontent.com/openjs-foundation/artwork/main/projects/webpack/webpack-icon-color.png) | ![webpack hex sticker](https://raw.githubusercontent.com/openjs-foundation/artwork/main/projects/webpack/webpack-hex-sticker.png) | +| [svg](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-icon-color.svg) \| [png](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-icon-color.png) | [svg](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-hex-sticker.svg) \| [png](https://github.com/openjs-foundation/artwork/blob/main/projects/webpack/webpack-hex-sticker.png) | + +## Color Palette + +The following colors are used throughout the site in various combinations and on our fancy clothing line launched with the help of [Open Collective](https://opencollective.com/) and [Threadless](https://medium.com/u/840563ee2a56) over at the [official webpack store](https://webpack.threadless.com/collections/the-final-release-collection/)! + +| Sample | Color Name | HEX Code | RGB Code | +| -------------------------------------------------- | ----------- | --------- | -------------------- | +| ![](https://singlecolorimage.com/get/8dd6f9/60x24) | Malibu | `#8dd6f9` | `rgb(141, 214, 249)` | +| ![](https://singlecolorimage.com/get/1d78c1/60x24) | Denim | `#1d78c1` | `rgb(29, 120, 193)` | +| ![](https://singlecolorimage.com/get/465E69/60x24) | Fiord | `#465E69` | `rgb(70, 94, 105)` | +| ![](https://singlecolorimage.com/get/2B3A42/60x24) | Outer Space | `#2B3A42` | `rgb(43, 58, 66)` | +| ![](https://singlecolorimage.com/get/fefefe/60x24) | White | `#ffffff` | `rgb(255, 255, 255)` | +| ![](https://singlecolorimage.com/get/f2f2f2/60x24) | Concrete | `#f2f2f2` | `rgb(242, 242, 242)` | +| ![](https://singlecolorimage.com/get/dedede/60x24) | Alto | `#dedede` | `rgb(222, 222, 222)` | +| ![](https://singlecolorimage.com/get/999999/60x24) | Dusty Gray | `#999999` | `rgb(153, 153, 153)` | +| ![](https://singlecolorimage.com/get/666666/60x24) | Dove Gray | `#666666` | `rgb(102, 102, 102)` | +| ![](https://singlecolorimage.com/get/535353/60x24) | Emperor | `#535353` | `rgb(83, 83, 83)` | +| ![](https://singlecolorimage.com/get/333333/60x24) | Mine Shaft | `#333333` | `rgb(51, 51, 51)` | + +## Trademarks and Licensing + +Webpack is a project of the OpenJS Foundation. Please review the [trademark policy](https://trademark-policy.openjsf.org/) for information about permissible use of webpack™ logos and marks. diff --git a/vercel.json b/vercel.json index da0ce792..06b19fea 100644 --- a/vercel.json +++ b/vercel.json @@ -4,5 +4,12 @@ "cleanUrls": true, "trailingSlash": false, "installCommand": "bash scripts/vercel/prepare.sh", - "buildCommand": "bash scripts/vercel/build.sh" + "buildCommand": "bash scripts/vercel/build.sh", + "redirects": [ + { + "source": "/branding", + "destination": "/about/branding", + "permanent": true + } + ] }