All Projects → Dawntraoz → full-static-nuxt-storyblok

Dawntraoz / full-static-nuxt-storyblok

Licence: MIT license
A boilerplate project designed to demonstrate the benefits of using JAMStack and the easy configuration of a project with NuxtJS and Storyblok <3

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
CSS
56736 projects

Projects that are alternatives of or similar to full-static-nuxt-storyblok

site
RailroadPM.org 2.x Site
Stars: ✭ 18 (-30.77%)
Mutual labels:  jamstack, nuxtjs
Bael Template
Brutalist Blog theme for Netlify CMS
Stars: ✭ 187 (+619.23%)
Mutual labels:  jamstack, nuxtjs
Wuxt
Nuxt/WordPress development environment, combining the worlds biggest CMS with the most awesome front-end application framework yet.
Stars: ✭ 459 (+1665.38%)
Mutual labels:  jamstack, nuxtjs
nuxt-cockpit
A Tutorial to Bundle Cockpit CMS & Nuxt.js in a full JAMstack
Stars: ✭ 45 (+73.08%)
Mutual labels:  jamstack, nuxtjs
nuxt-humans-txt
🧑🏻👩🏻 "We are people, not machines" - An initiative to know the creators of a website. Contains the information about humans to the web building - A Nuxt Module to statically integrate and generate a humans.txt author file - Based on the HumansTxt Project.
Stars: ✭ 27 (+3.85%)
Mutual labels:  nuxtjs
eleventy-plugin-blog-tools
A collection of shortcodes, filters and tags that make blogging on 11ty more fun
Stars: ✭ 41 (+57.69%)
Mutual labels:  jamstack
laravel-nuxt
Laravel 5.6 + Nuxt 1.4: Auth Starter (SSR, SPA, Socialite)
Stars: ✭ 19 (-26.92%)
Mutual labels:  nuxtjs
nuxt-seomatic-meta
A module for connecting Nuxt.js to the Craft CMS SEOmatic plugin via GraphQL. Nuxt-o-matic!
Stars: ✭ 28 (+7.69%)
Mutual labels:  nuxtjs
geeky-hugo
Geeky is a Personal Hugo blog theme focused on high speed. Geeky is fully responsive, Superfast, and powered by Bootstrap v5.
Stars: ✭ 44 (+69.23%)
Mutual labels:  jamstack
nuxt-django-postgresql
Nuxt.js, Django, PostgreSQL, Nginx, Docker, Adminer, RabbitMQ, Celery
Stars: ✭ 17 (-34.62%)
Mutual labels:  nuxtjs
virtual-lolly
JAMstack demo site - prerendered with serverless API fallbacks
Stars: ✭ 110 (+323.08%)
Mutual labels:  jamstack
woliveiras.github.io
My personal Blog
Stars: ✭ 25 (-3.85%)
Mutual labels:  jamstack
vue-cli-3-nuxt-typescript
Finally I got typescript working with Nuxt-Edge, using vue-cli 3
Stars: ✭ 24 (-7.69%)
Mutual labels:  nuxtjs
my-blog
node.js vue.js nuxt.js hapi.js mysql 仿简书博客
Stars: ✭ 25 (-3.85%)
Mutual labels:  nuxtjs
influencer-hugo
Influencer is a Hugo theme for book authors and writers. It has also Snipcart supports for order books and payments.
Stars: ✭ 66 (+153.85%)
Mutual labels:  jamstack
Bolt
⚡ is a fast grunt based, data driven, static site seed project, for rapid web development of PWA's or JAMstack projects
Stars: ✭ 30 (+15.38%)
Mutual labels:  jamstack
nodejs-vuejs-mysql-boilerplate
Node.js (REST API) + Vue.js/Nuxt.js (Frontend/Backend) + MySQL Boilerplate
Stars: ✭ 134 (+415.38%)
Mutual labels:  nuxtjs
graduation-web
A PWA for the community of students of CEIT Department at Amirkabir U of Technology (Class of 2018)
Stars: ✭ 25 (-3.85%)
Mutual labels:  nuxtjs
nuxt-basic-blog
A set of starter blog templates to use with Nuxt.
Stars: ✭ 47 (+80.77%)
Mutual labels:  nuxtjs
P-Blog
P stands for "personal", what else can it be?. ⚡ Own personal blog with custom CMS to implement Next.js and node back-end. And hey! it supports PWA too.
Stars: ✭ 30 (+15.38%)
Mutual labels:  jamstack

Full Static with NuxtJS and Storyblok

A boilerplate project designed to demonstrate the benefits of using Jamstack and the easy configuration of a project with NuxtJS and Storyblok.

Storyblok space Setup

In this section we are going to look at how to define the component schemas needed for this project in our Storyblok space. What properties, type of fields, we have in each one and, finally, we will see an example of using these components to create a new page.

Create an account and start an space in Storyblok

Go to app.storyblok.com, select Sign up and create an account. When it's ready, create an empty space and follow the next steps.

Blocks schema

Components and templates at Storyblok Full Static site

Content type

1. Page template

Field Name Field Type Options
title Text
body Blocks Allow only specific components to be inserted: Groups -> Organisms

Page template Storyblok schema

Body

Body block options

Nestable Molecules

1. Heading Section

Field Name Field Type
subtitle Text
title Text
intro Textarea

Heading Section Storyblok schema

2. Benefit Card

Field Name Field Type Options
icon Asset Images
color Single-Option Source: self; Options (name/value): orange/orange, purple/purple, blue/blue, green/green
name Text
description Textarea

Benefit Card Storyblok schema

Color single-option definition:

Benefit Card Color single-option definition

3. Tech Card

Field Name Field Type Options
logo Asset Images
name Text
url Link

Tech Card Storyblok schema

Nestable Organisms

1. Benefits

Field Name Field Type Options
heading Blocks Allow only specific components to be inserted: Component -> Heading Section (1 max)
benefits Blocks Allow only specific components to be inserted: Component -> Benefit Card (6 max)

Benefits Storyblok schema

Heading Benefits
Heading Blocks definition Benefits Blocks definition

2. Tech Stack

Field Name Field Type Options
heading Blocks Allow only specific components to be inserted: Component -> Heading Section (1 max)
stack Blocks Allow only specific components to be inserted: Component -> Tech Card

Tech stack Storyblok schema

Heading Benefits
Heading Blocks definition Tech card Blocks definition

Components use case: Homepage

For the homepage we will fill in the title field and choose the organisms we want in the body.

In this example, as in the live demo, we'll add Benefits and Tech Stack organisms.

Homepage template filled with title and body organisms

And this is how the home Config tab will look like:

Page template configuration in Storyblok

For the organisms, let's see which blocks to add to them:

Benefits Organism Content

1. Adding a Heading Section molecule

Adding a heading section to the Benefits organism

2. Adding Benefit Card molecules

Adding a benefit card to the Benefits organism

Tech Stack Organism Content

1. Adding a Heading Section molecule

Adding a heading section to the Tech Stack organism

2. Adding Tech Card molecules

Adding a tech card to the Tech Stack organism

Frontend Build Setup

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn dev

# build for production and launch server
$ yarn build
$ yarn start

# generate static project
$ yarn generate

For detailed explanation on how things work, check out Nuxt.js docs.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].