-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
5d29850
commit c80320c
Showing
11 changed files
with
2,263 additions
and
1,669 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function App({ Component, pageProps }) { | ||
return <Component {...pageProps} />; | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export default { | ||
index: "Overview", | ||
quickstart: "Quickstart", | ||
}; |
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,5 +1,3 @@ | ||
import { Steps } from "nextra/components"; | ||
|
||
# Running Locally | ||
|
||
To run a local development environment, you need to set up the Saleor instance first. You can use a free developer account at [Saleor Cloud](https://docs.saleor.io/cloud) to start quickly with the backend. Alternatively, you can run [Saleor locally](https://docs.saleor.io/quickstart/running-locally) using Docker. |
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,27 +1,33 @@ | ||
import type { DocsThemeConfig } from "nextra-theme-docs"; | ||
import { type DocsThemeConfig, useConfig } from "nextra-theme-docs"; | ||
|
||
import Logo from "./images/logo.svg"; | ||
|
||
const config: DocsThemeConfig = { | ||
head: () => { | ||
const { frontMatter } = useConfig(); | ||
return ( | ||
<> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta | ||
property="og:title" | ||
content={`${frontMatter.title} | Nimara Storefront`} | ||
/> | ||
</> | ||
); | ||
}, | ||
logo: <Logo />, | ||
logoLink: "https://www.demo.nimara.store/", | ||
project: { | ||
link: "https://github.com/mirumee/nimara-ecommerce/tree/main/apps/storefront/", | ||
link: "https://github.com/mirumee/nimara-ecommerce/tree/main/apps/storefront", | ||
}, | ||
docsRepositoryBase: | ||
"https://github.com/mirumee/nimara-ecommerce/tree/main/apps/docs/", | ||
"https://github.com/mirumee/nimara-ecommerce/tree/main/apps/docs", | ||
chat: { | ||
link: "https://discord.com/channels/1271065464407068702/", | ||
link: "https://discord.com/channels/1271065464407068702", | ||
}, | ||
footer: { | ||
text: `© Nimara ${new Date().getFullYear()}`, | ||
}, | ||
useNextSeoProps() { | ||
return { | ||
titleTemplate: "%s – Nimara", | ||
}; | ||
content: `© Nimara ${new Date().getFullYear()}`, | ||
}, | ||
}; | ||
|
||
// eslint-disable-next-line import/no-default-export | ||
export default config; | ||
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
Oops, something went wrong.