-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
35 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
title: Origami For Everyone | ||
description: The new Origami. Origami For Everyone will support the FT to create differentiated products, targeting different audiences, by scaling Origami to support more brands and platforms. | ||
title: Origami Design System | ||
description: The new Origami. Origami will support the FT to create differentiated products, targeting different audiences, by scaling Origami to support more brands and platforms. | ||
template: splash | ||
hero: | ||
tagline: New Origami components. Rethought from the ground up, with aligned Figma libraries, design guidelines, and brand support powered by design tokens. | ||
tagline: Origami helps us design & build digital products for brands across the FT Group. Explore our new user interface components and patterns. Rethought from the ground up, with aligned Figma libraries, design guidelines, and multi-brand support powered by design tokens. | ||
image: | ||
file: ../../assets/origami-logo.svg | ||
actions: | ||
- text: Get started | ||
- text: Components | ||
link: ./components/buttons | ||
icon: right-arrow | ||
variant: primary | ||
|
@@ -16,22 +16,21 @@ hero: | |
icon: external | ||
--- | ||
|
||
import { Card, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
## Product Delivery Superpowers | ||
import {Card, CardGrid} from '@astrojs/starlight/components'; | ||
|
||
<CardGrid> | ||
<Card title="Validate ideas" icon="pencil"> | ||
A fully featured Figma library of all our components, with thorough documentation for patterns and design guidelines. | ||
Mock-up prototypes quickly, saving time to focus on where you can add unique value. | ||
</Card> | ||
<Card title="Rollout to production" icon="add-document"> | ||
Designers ❤️ engineers. New Figma and Origami integrations allow a designer to see a live, interactive component preview instantly. Integrations with Figma's Dev Mode mean a much smoother handover process, with fewer mistakes, and less back-and-fourth. | ||
</Card> | ||
<Card title="No more waiting" icon="setting"> | ||
No more Sass, or accidental Doom Scrolling from engineers as they wait for it to compile. Build times for Origami For Everyone are significantly reduced allowing engineers to quickly see the affect of their change and iterate. | ||
</Card> | ||
<Card title="Next level collaboration" icon="open-book"> | ||
Origami For Everyone improves support for brand and platform variations. We're working with the Specialist team to introduce a new brand, so we can collaborate together on shared components across groups. | ||
<Card title="Mission" icon="rocket"> | ||
Unify and document the style and experience across the digital | ||
products of every FT brand, leveraging the web platform to provide an | ||
implementation of brand guidelines. | ||
</Card> | ||
<Card title="Contact" icon="slack"> | ||
Origami is a shared project, built by teams across the FT. The core Origami team and our community of collaborators are here to help if you have questions or feedback: | ||
|
||
<ul> | ||
<li>Slack: <a href="https://financialtimes.slack.com/messages/origami-support">#origami-support</a></li> | ||
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li> | ||
</ul> | ||
</Card> | ||
|
||
</CardGrid> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,8 @@ | |
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"type": "module", | ||
"main": "./cjs/index.js", | ||
"module": "./esm/index.js", | ||
"files": [ | ||
"cjs", | ||
"esm", | ||
|
@@ -21,9 +22,6 @@ | |
"package.json", | ||
"README.md" | ||
], | ||
"main": "./cjs/index.js", | ||
"module": "./esm/index.js", | ||
"types": "./build/types/index.d.ts", | ||
"scripts": { | ||
"build": "bash ../../scripts/component/build-o3.bash o3-typography" | ||
}, | ||
|