mirror of
https://github.com/vercel/commerce.git
synced 2025-09-23 00:00:19 +00:00
.vscode
assets
components
config
docs
framework
lib
click-outside
hooks
colors.ts
defaults.ts
focus-trap.tsx
get-slug.ts
range-map.ts
search.tsx
to-pixels.ts
usage-warns.ts
pages
public
scripts
.editorconfig
.env.template
.gitignore
.prettierignore
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
* Fix typo (#135) The defaultPageProps object had a typo in the name Co-authored-by: B <curciobelen@gmail.com> * changes * changes Co-authored-by: JD <jonathan.dawber@icloud.com>
15 lines
195 B
TypeScript
15 lines
195 B
TypeScript
// Fallback to CMS Data
|
|
|
|
export const defaultPageProps = {
|
|
header: {
|
|
links: [
|
|
{
|
|
link: {
|
|
title: 'New Arrivals',
|
|
url: '/',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|