diff --git a/packages/design-system/.storybook/preview-body.html b/packages/design-system/.storybook/preview-body.html
new file mode 100644
index 00000000..7ad22ae9
--- /dev/null
+++ b/packages/design-system/.storybook/preview-body.html
@@ -0,0 +1,5 @@
+
diff --git a/packages/design-system/src/MetaBox.tsx b/packages/design-system/src/MetaBox.tsx
new file mode 100644
index 00000000..fceb4123
--- /dev/null
+++ b/packages/design-system/src/MetaBox.tsx
@@ -0,0 +1,26 @@
+import { Box, Text } from '@chakra-ui/core';
+import React from 'react';
+
+export type MetaBoxProps = {
+ title: string;
+ children: React.ReactNode;
+};
+
+export const MetaBox: React.FC = ({ children, title }) => (
+
+
+
+ {title}
+
+
+
+ {children}
+
+
+);
diff --git a/packages/design-system/src/MetaTag.tsx b/packages/design-system/src/MetaTag.tsx
new file mode 100644
index 00000000..00e7cc6e
--- /dev/null
+++ b/packages/design-system/src/MetaTag.tsx
@@ -0,0 +1,14 @@
+import { Tag, TagProps } from '@chakra-ui/core';
+import React from 'react';
+
+export const MetaTag: React.FC = ({ children, ...props }) => (
+
+ {children}
+
+);
diff --git a/packages/design-system/src/index.ts b/packages/design-system/src/index.ts
index 0246a35e..c5bf36eb 100644
--- a/packages/design-system/src/index.ts
+++ b/packages/design-system/src/index.ts
@@ -1,26 +1,26 @@
export {
- ChakraProvider,
- CSSReset,
- Heading,
- Box,
- Image,
- Text,
Avatar,
+ Box,
Button,
ButtonGroup,
- Grid,
- SimpleGrid,
- Flex,
+ CSSReset,
+ ChakraProvider,
Divider,
+ Flex,
+ Grid,
+ Heading,
Icon,
IconButton,
+ Image,
+ Input,
Link,
List,
- Input,
Select,
+ SimpleGrid,
Skeleton,
Spinner,
Stack,
+ Text,
useTheme,
useToast,
} from '@chakra-ui/core';
@@ -30,3 +30,5 @@ export { Icon3box } from './icons';
export { EmailIcon } from '@chakra-ui/icons';
export { MetaHeading } from './MetaHeading';
export { MetaButton } from './MetaButton';
+export { MetaBox } from './MetaBox';
+export { MetaTag } from './MetaTag';
diff --git a/packages/design-system/src/theme.ts b/packages/design-system/src/theme.ts
index c2df9bc6..6fcca701 100644
--- a/packages/design-system/src/theme.ts
+++ b/packages/design-system/src/theme.ts
@@ -3,6 +3,12 @@ import chakraTheme, { Theme as ChakraTheme } from '@chakra-ui/theme';
interface MetaColors {
offwhite: string;
blue02: string;
+ dark: string;
+ purpleBoxDark: string;
+ purpleBoxLight: string;
+ purpleTag: string;
+ blueLight: string;
+ cyanText: string;
}
interface MetaTheme {
@@ -17,7 +23,7 @@ export const theme: Theme = {
...chakraTheme.styles,
global: {
...chakraTheme.styles.global,
- background: 'black',
+ background: '#1b0d2a',
color: 'white',
},
},
@@ -35,8 +41,6 @@ export const theme: Theme = {
800: '#00494b',
900: '#001a1b',
},
- offwhite: '#F6F8F9',
- blue02: 'rgba(79, 105, 205, 0.2)',
purple: {
50: '#eee7ff',
100: '#c8bafc',
@@ -49,10 +53,18 @@ export const theme: Theme = {
800: '#150747',
900: '#07021d',
},
+ offwhite: '#F6F8F9',
+ blue02: 'rgba(79, 105, 205, 0.2)',
+ dark: '#1B0D2A',
+ purpleBoxDark: '#261943',
+ purpleBoxLight: '#392373',
+ purpleTag: '#40347C',
+ blueLight: '#A5B9F6',
+ cyanText: '#79F8FB',
},
fonts: {
body: '"IBM Plex Sans", sans-serif',
mono: '"IBM Plex Mono", monospace',
heading: '"Press Start 2P", sans-serif',
- }
+ },
};
diff --git a/packages/design-system/stories/0-Text.stories.tsx b/packages/design-system/stories/0-Text.stories.tsx
index ec307d3f..f20800ef 100644
--- a/packages/design-system/stories/0-Text.stories.tsx
+++ b/packages/design-system/stories/0-Text.stories.tsx
@@ -1,23 +1,108 @@
-import { Stack, Text } from '@chakra-ui/core';
import React from 'react';
+import { Box, Button, Heading, Link, Stack, Text } from '../src';
+
export default {
title: 'Text',
component: Text,
};
-export const Sizes = () => (
+export const AllTypes = () => (
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
- In love with MetaGame
+ Become a Player
+
+
+ I’ll do this later.{' '}
+
+
+
+
+
+ PΞTH
+
+
+ @peth
+
+
+
+
+
+ Role
+
+
+ Community Lead
+
+
+
+
+ About me
+
+
+
+
+ Peter Jursic
+
+
+ Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet
+ sint. Velit officia consequat duis enim velit mollit. Exercitation
+ veniam consequat sunt nostrud amet.{' '}
+
+
+
+
+ Go to external url
+
+
+
+
+
+ The Reformer
+
+
+ Principled, Purposeful, Self-Controlled, and Perfectionistic
+
+
+
+
+
+ MetaGame Discord Bots
+
+
+ Would be great to have the bot message every person promoted to MG
+ Player with “Welcome to the game…” (an onboarding guide, something like
+ this)
+
+
);
diff --git a/packages/design-system/stories/1-Button.stories.tsx b/packages/design-system/stories/1-Button.stories.tsx
deleted file mode 100644
index b2d9d2d4..00000000
--- a/packages/design-system/stories/1-Button.stories.tsx
+++ /dev/null
@@ -1,73 +0,0 @@
-import { Button, ButtonGroup } from '@chakra-ui/core';
-import { ArrowForwardIcon, EmailIcon } from '@chakra-ui/icons';
-import React from 'react';
-
-export default {
- title: 'Button',
- component: Button,
-};
-
-export const Sizes = () => (
-
-
-
-
-
-
-);
-
-export const Variants = () => (
-
-
-
-
-
-
-);
-
-export const Icons = () => (
-
- } colorScheme="teal" variant="solid">
- Email
-
- }
- colorScheme="teal"
- variant="outline"
- >
- Call us
-
-
-);
-
-export const Loading = () => (
-
-
-
-
-);
diff --git a/packages/design-system/stories/1-MetaButton.stories.tsx b/packages/design-system/stories/1-MetaButton.stories.tsx
new file mode 100644
index 00000000..daec0173
--- /dev/null
+++ b/packages/design-system/stories/1-MetaButton.stories.tsx
@@ -0,0 +1,42 @@
+import React from 'react';
+
+import { ButtonGroup, MetaButton, Stack } from '../src';
+
+export default {
+ title: 'MetaButton',
+ component: MetaButton,
+};
+
+export const Sizes = () => (
+
+
+ MetaButton
+ MetaButton
+ MetaButton
+ MetaButton
+
+
+
+ MetaButton
+
+
+ MetaButton
+
+
+ MetaButton
+
+
+ MetaButton
+
+
+
+);
+
+export const Variants = () => (
+
+ MetaButton
+ MetaButton
+ MetaButton
+ MetaButton
+
+);
diff --git a/packages/design-system/stories/2-MetaBox.stories.tsx b/packages/design-system/stories/2-MetaBox.stories.tsx
new file mode 100644
index 00000000..294c0dc7
--- /dev/null
+++ b/packages/design-system/stories/2-MetaBox.stories.tsx
@@ -0,0 +1,34 @@
+import React from 'react';
+
+import { MetaBox, MetaTag, Stack, Text } from '../src';
+
+export default {
+ title: 'MetaBox',
+ component: MetaBox,
+};
+
+export const Default = () => (
+
+
+ Name Nickname
+
+
+ Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint.
+ Velit officia consequat duis enim velit mollit. Exercitation veniam
+ consequat sunt nostrud amet....
+
+
+);
+
+export const WithTags = () => (
+
+
+ Writing code
+ Observability
+ Dealing with ambiguity
+ Knowledge Sharing
+ Facilitation
+ Teamwork
+
+
+);
diff --git a/packages/design-system/test/0-Text.test.tsx b/packages/design-system/test/0-Text.test.tsx
index 91aeb048..5fe0dd22 100644
--- a/packages/design-system/test/0-Text.test.tsx
+++ b/packages/design-system/test/0-Text.test.tsx
@@ -1,12 +1,12 @@
import React from 'react';
import * as ReactDOM from 'react-dom';
-import { Sizes } from '../stories/0-Text.stories';
+import { Fonts } from '../stories/0-Text.stories';
describe('Text Stories', () => {
it('renders without crashing', () => {
const div = document.createElement('div');
- ReactDOM.render(, div);
+ ReactDOM.render(, div);
ReactDOM.unmountComponentAtNode(div);
});
});