diff --git a/app/pages/blog/another-blog.md b/app/pages/blog/another-blog.md new file mode 100644 index 0000000000..911325a230 --- /dev/null +++ b/app/pages/blog/another-blog.md @@ -0,0 +1,30 @@ +--- +authors: + - name: Alex Savelyev + blueskyHandle: alexdln.com + - name: Philippe Serhal + blueskyHandle: philippeserhal.com + - name: Matias Capeletto + blueskyHandle: patak.cat +title: 'Another blog about toast' +tags: ['OpenSource', 'Release'] +excerpt: 'Something about toast and potatoes, they are good food.' +date: '2026-05-08' +slug: 'release/0.8' +image: 'https://npmx.dev/blog/og/release-0_8.png' +description: 'Something about toast and potatoes, they are good food. And something about butter' +draft: false +--- + +# Toast + +Info about toast. + +# Potatoes + +Infor about potatoes. + +# Conclusion + +Both go well with butter. +But not jam, only toast goes well with jam. diff --git a/app/pages/blog/index.stories.ts b/app/pages/blog/index.stories.ts new file mode 100644 index 0000000000..9825d2d2b1 --- /dev/null +++ b/app/pages/blog/index.stories.ts @@ -0,0 +1,16 @@ +import Blog from './index.vue' +import type { Meta, StoryObj } from '@storybook-vue/nuxt' +import { pageDecorator } from '../../../.storybook/decorators' + +const meta = { + component: Blog, + parameters: { + layout: 'fullscreen', + }, + decorators: [pageDecorator], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = {}