Skip to content

Commit

Permalink
chore(docs): revert code style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alicanerdurmaz committed Feb 21, 2024
1 parent 2cd0076 commit f8d52ca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions documentation/blog/2022-05-05-open-source-headless-cms.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Build flexible and faster web projects using [Netlify](https://www.netlifycms.or

<img src="https://refine.ams3.cdn.digitaloceanspaces.com/blog/2022-05-05-open-source-headless-cms/netlify.jpg" alt="netlify" />


It is designed as a one-page React app; so you can add UI widgets, editor plugins and backends to support various Git platform APIs.

### Ghost
Expand All @@ -78,6 +79,7 @@ Refine comes with Ant Design and can also be used headless if you prefer.

<img src="https://refine.ams3.cdn.digitaloceanspaces.com/blog/2022-05-05-open-source-headless-cms/refine.jpg" alt="refine" />


### Conclusion

Headless CMS systems offer a modern and efficient approach to creating and distributing content across multiple channels with high performance, flexibility, scalability and a host of useful features.
Expand Down
1 change: 1 addition & 0 deletions documentation/blog/2022-09-02-sveltekit-crud-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ The above command will prompt you to select the configurations for your project.

<img src="https://refine.ams3.cdn.digitaloceanspaces.com/blog/2022-09-02-sveltekit-crud-app/terminal.png" alt="terminal" />


Now change the directory into the project folder and install the required dependencies with the command below.

```shell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ import { Refine } from "@refinedev/core";
import { useNotificationProvider } from "@refinedev/mui";

const App = () => {
return <Refine notificationProvider={useNotificationProvider}>{/* ... */}</Refine>;
return (
<Refine notificationProvider={useNotificationProvider}>
{/* ... */}
</Refine>
);
};
```

Expand Down

0 comments on commit f8d52ca

Please sign in to comment.