The NextJs core starter for Stackbit.
npm install
npm run dev
Create a new markdown file content/pages/new-page.md with the following frontmatter.
---
title: "New Example Page"
layout: "AdvancedLayout"
sections:
- type: "HeroSection"
variant: "variant-a"
width: "wide"
height: "auto"
alignHoriz: "left"
badge: "Brand New"
title: "My Heading"
text: "a long description"
actions:
- type: "Button"
url: "/"
label: "Home"
style: "primary"
feature:
type: "ImageBlock"
imageUrl: "/images/hero.png"
imageAltText: "Image alt text"
imageCaption: "Image caption"
---Visit http://localhost:3000/new-page/ to see the new page.
Note: The pages url will match the file path -
content/pages/new-page.mdwill resolve to /new-page. A nested folder likecontent/pages/blog/index.mdwill resolve to /blog/
Menu items are configured in content/data/config.json. Edit the config file and add a new menu object to the primaryLinks array.
// content/data/config.json
{
"navBar": {
// ...
"primaryLinks": [
// ...
{
"type": "Link",
"label": "My New Page",
"url": "/new-page",
"altText": ""
}
],
// ...
}
}Add a 🧩 CtaSection to the page by adding the component to the the sections array.
# content/pages/new-page.md
---
title: "New Example Page"
layout: "AdvancedLayout"
sections: # sections array
- type: "HeroSection"
# ...
- type: "CtaSection"
variant: "variant-a"
width: "wide"
height: "auto"
alignHoriz: "center"
title: "Let's do this"
text: "The Stackbit theme is flexible and scalable to every need. It can manage any layout and any screen."
actions:
- type: "Button"
url: "/contact"
label: "Get Started"
style: "primary"
---Component Library: The Stackbit Component Library has full documentation on each component including the available props and frontmatter.
Component Examples
In this example we will create a new component that displays a grid of logos.
Create a new react component in src/components/LogoSection.js
import React from 'react';
const LogoSection = (props) => {
const { logos, title } = props;
return (
<div className="max-w-screen-xl mx-auto px-4 sm:px-6 py-14 lg:py-20 mt-10 mb-10 text-center">
<h1 className="text-3xl tracking-tight sm:text-4xl mb-2">{title}</h1>
<div className="flex justify-center items-center">
{logos.map((logo, index) => (
<div className="p-6" key={index}>
<img className="mb-2" height="60px" width="60px" src={logo.image} />
<h2 className="text-sm text-gray-400">{logo.name}</h2>
</div>
))}
</div>
</div>
);
};
export default LogoSection;Register the component in .stackbit/components-map.json
{
"README": "Components set to 'null' will be loaded from @stackbit/components library. To override a component, set it to relative paths of your component",
"components": {
"Action": null,
...
"LogoSection": "../src/components/LogoSection.js"
},
"dynamic": {
"CheckboxFormControl": "@stackbit/components/components/CheckboxFormControl",
...
"LogoSection": "../src/components/LogoSection.js"
}
}Add a new model for the LogoSection component. Create a new model file at .stackbit/models/LogoSection.yml
type: object
name: LogoSection
label: Logo section
fields:
- type: string
name: title
- type: list
name: logos
items:
type: object
fields:
- type: string
name: name
- type: image
name: imageExtend the 🧩 AdvancedLayout model. Open the model file at .stackbit/models/AdvancedLayout.yml
type: page
name: AdvancedLayout
label: Advanced page
layout: AdvancedLayout
hideContent: true
fields:
- type: string
name: title
label: Title
- type: list
name: sections
label: Sections
items:
type: model
models:
- ContactSection
...
- LogoSectionAdd the component to the homepage content. Edit content/pages/index.md
---
title: Home
layout: AdvancedLayout
sections:
- type: HeroSection
...
- type: LogoSection
title: "Our Partners"
logos:
- name: 'Stackbit'
image: '/images/stackbit.svg'
- name: 'NextJs'
image: '/images/nextdotjs.svg'
---Download the images and place them in the /public/images/ folder.
In this example we will extend an existing Stackbit component.
Explain how layouts work.
- How does the
layoutfield work? - How does the
layoutfield effect which frontmatter fields can be used? - The layout is both a component and a model. Explain this concept.
You can edit the tailwind config in tailwind.config.js
The Stackbit component library includes a number of Tailwind preset configurations which will dramatically change the themes look and feel.
- @stackbit/components/themes/tailwind.bold.config.js
- @stackbit/components/themes/tailwind.eco.config.js
- @stackbit/components/themes/tailwind.modern.config.js
- @stackbit/components/themes/tailwind.retro.config.js
Use the presets option to change the configuration.
// tailwind.config.js
module.exports = {
presets: [require('@stackbit/components/themes/tailwind.bold.config')],
// ...
}module.exports = {
...
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: '#207bea',
secondary: '#FFF7E3',
base: '#262626',
'complimentary-1': '#e8f3ee',
'complimentary-2': '#e2e4ff',
info: '#EA5234'
}
}
},
...
};module.exports = {
...
plugins: [
plugin(function ({ addBase, addComponents, theme }) {
addComponents({
'.colors-e': {
'@apply bg-red-500 text-base': {},
'.sb-input,.sb-select,.sb-textarea': {
'@apply border-base placeholder-base': {}
},
'.sb-btn-primary': {
'@apply bg-base border-base text-white hover:bg-opacity-70 hover:border-opacity-70': {}
},
'.sb-btn-secondary': {
'@apply border-base text-base hover:border-opacity-60 hover:text-base': {}
},
'.sb-divider': {
'@apply before:bg-base': {}
},
'.sb-card': {
'@apply bg-secondary': {}
}
}
});
})
]
};