Skip to content

Commit

Permalink
fix: images paths in readme NO-JIRA (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-potepa authored Oct 12, 2023
1 parent 5bd9825 commit 6557317
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="header.svg" width="100%" alt="css-in-readme">
<img src="./public/header.svg" width="100%" alt="css-in-readme">

# Tetrisly React

Expand Down Expand Up @@ -53,20 +53,6 @@ function App() {
}
```

### Default font

Tetrisly uses [Inter](https://fonts.google.com/specimen/Inter) font as default. To add it to your app you should link it
in your root `.html` file:

```html
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;450;600&display=swap"
rel="stylesheet"
/>
```

## Usage/Examples

```typescript
Expand Down Expand Up @@ -113,7 +99,7 @@ To run tests, run the following command

## Documentation

<img src="public/logo_docs.svg" />
<img src="./public/logo_docs.svg" />

If you want to dive deeper into the components Tetrisly offers, check out our official documentation: [Tetrisly Docs](https://docs.tetrisly.com/)

Expand Down
File renamed without changes
3 changes: 1 addition & 2 deletions src/docs-pages/ReadMe.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ import { Meta, Markdown } from '@storybook/addon-docs';
import readme from '@/../README.md?raw';

<Meta title="Docs/ReadMe" />

<Markdown>{readme}</Markdown>
<Markdown>{readme.replaceAll('./public', '')}</Markdown>

0 comments on commit 6557317

Please sign in to comment.