To start a new blog with Bloggrify, you can start from a theme to start with.
By default, if you follow the installation guide, you will start with the "Minimalist" theme.
You can choose to install another theme like "Mistral", "Bento", or "Epoxia", or you can also look at the other templates available.
Example with the Mistral theme:
npm install @bloggrify/mistral
yarn add @bloggrify/mistral
pnpm add @bloggrify/mistral
Then you have to explicitly say to Nuxt that you are using Bloggrify as an extended module. You can do this by adding the following line in your nuxt.config.js file:
extends: [
'@bloggrify/core',
'@bloggrify/mistral',
],
app/app.config.ts file: theme: 'mistral',
dev command to start Bloggrify in development mode:npm run dev
yarn dev
pnpm run dev
Alternatively, you can start from scratch and create your own theme. To do so, follow the theme creation guide to create your own theme.