Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(branding): introduce branding page #6435

Merged
merged 6 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<br />
<a href="https://nodejs.org">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="./public/static/images/logos/nodejs-new-pantone-white.svg">
<img src="./public/static/images/logos/nodejs-new-pantone-black.svg" width="200px">
<source media="(prefers-color-scheme: dark)" srcset="./public/static/logos/nodejsDark.svg">
<img src="./public/static/logos/nodejsLight.svg" width="200px">
</picture>
</a>
</p>
Expand Down
1 change: 1 addition & 0 deletions i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"links": {
"about": "About Node.js",
"aboutSide": "About Node.js®",
"branding": "Branding of Node.js",
"governance": "Project Governance",
"releases": "Previous Releases",
"security": "Security Reporting"
Expand Down
4 changes: 4 additions & 0 deletions navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@
"link": "/about",
"label": "components.navigation.about.links.aboutSide"
},
"branding": {
"link": "/about/branding",
"label": "components.navigation.about.links.branding"
},
"governance": {
"link": "/about/governance",
"label": "components.navigation.about.links.governance"
Expand Down
75 changes: 75 additions & 0 deletions pages/en/about/branding.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
title: Branding of Node.js
layout: about.hbs
---

# Branding of Node.js

Please review the [trademark policy](https://trademark-policy.openjsf.org/) for information about permissible use of Node.js® logos and marks.

## Node.js® Mascot

<img
alt="Node.js mascot"
src="/static/images/node-mascot.svg"
className="w-[100px]"
ovflowd marked this conversation as resolved.
Show resolved Hide resolved
/>

## Node.js® Logo

### Node.js® Horizontal Logo

<img
alt="Node.js Dark Horizontal Logo"
src="/static/logos/nodejsDark.svg"
className="w-[200px]"
/>

<img
alt="Node.js Light Horizontal Logo"
src="/static/logos/nodejsLight.svg"
className="w-[200px] rounded bg-neutral-950 p-2 dark:bg-transparent"
/>

### Node.js® Stacked Logo

<img
alt="Node.js Dark Stacked Logo"
src="/static/logos/nodejsStackedDark.svg"
className="w-[200px]"
/>

<img
alt="Node.js Light Stacked Logo"
src="/static/logos/nodejsStackedLight.svg"
className="w-[200px] rounded bg-neutral-950 p-2 dark:bg-transparent"
/>

<img
alt="Node.js Black Stacked Logo"
src="/static/logos/nodejsStackedBlack.svg"
className="w-[200px]"
/>

<img
alt="Node.js White Stacked Logo"
src="/static/logos/nodejsStackedWhite.svg"
className="w-[200px] rounded bg-neutral-950 p-2 dark:bg-transparent"
/>

### JS Icons

<img
alt="JS Icons Green"
src="/static/logos/jsIconGreen.svg"
className="w-[100px]"
/>

<img
alt="White JS Icons"
src="/static/logos/jsIconWhite.svg"
className="w-[100px] rounded bg-neutral-950 p-2 dark:bg-transparent"
/>

> If your are interessed by Node.js Website design systems
AugustinMauroy marked this conversation as resolved.
Show resolved Hide resolved
> You can take a look in [Node.js Website repository](https://github.com/nodejs/nodejs.org)
AugustinMauroy marked this conversation as resolved.
Show resolved Hide resolved
10 changes: 0 additions & 10 deletions pages/en/about/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,6 @@ title: About Node.js®
layout: about.hbs
---

<div className="my-4 flex items-center justify-center">
<img
alt="Node.js mascot"
src="/static/images/node-mascot.svg"
className="w-[100px]"
/>
</div>

---

# About Node.js®

As an asynchronous event-driven JavaScript runtime, Node.js is designed to build
Expand Down
4 changes: 0 additions & 4 deletions public/static/images/dark-mode.svg

This file was deleted.

9 changes: 0 additions & 9 deletions public/static/images/language-picker.svg

This file was deleted.

4 changes: 0 additions & 4 deletions public/static/images/light-mode.svg

This file was deleted.

Binary file removed public/static/images/logo.png
Binary file not shown.
38 changes: 0 additions & 38 deletions public/static/images/logo.svg

This file was deleted.

Binary file removed public/static/images/logos/nodejs-black.eps
Binary file not shown.
Binary file removed public/static/images/logos/nodejs-dark.eps
Binary file not shown.
Binary file removed public/static/images/logos/nodejs-green.eps
Binary file not shown.
Binary file removed public/static/images/logos/nodejs-light.eps
Binary file not shown.
Loading
Loading