Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
27 changes: 27 additions & 0 deletions components/__design__/horizontal-logos.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import Image from 'next/image';
import type { Meta as MetaObj, StoryObj } from '@storybook/react';

export const HorizontalLogos: StoryObj = {};

export default {
title: 'Design System/Logos',
component: () => {
return (
<div>
<Image
src={`/static/images/logos/horizontal-light.svg`}
className="bg-black"
alt="Node.js"
width={267}
height={80}
/>
<Image
src={`/static/images/logos/horizontal-dark.svg`}
alt="Node.js"
width={267}
height={80}
/>
</div>
);
},
} as MetaObj;
38 changes: 38 additions & 0 deletions public/static/images/logos/horizontal-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions public/static/images/logos/horizontal-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.