From eff2466873f2977e878839301a0fb1c9687d4444 Mon Sep 17 00:00:00 2001 From: Jewgeni Lewash Date: Mon, 4 Mar 2024 08:13:31 +0100 Subject: [PATCH] feat(blog): add description to blogposts --- frontmatter.json | 12 ++++++++---- ...elopment-tools-for-building-stunning-websites.mdx | 1 + ...ential-frontend-tools-for-astro-js-developers.mdx | 1 + .../exploring-nodejs-development-trends-2024.mdx | 1 + ...-power-of-astro-js-for-better-web-development.mdx | 1 + src/content/config.ts | 1 + 6 files changed, 13 insertions(+), 4 deletions(-) diff --git a/frontmatter.json b/frontmatter.json index 9e9a7af..12fbc08 100644 --- a/frontmatter.json +++ b/frontmatter.json @@ -12,6 +12,12 @@ "type": "string", "single": true, "required": true + }, + { + "name": "description", + "type": "string", + "single": true, + "required": true } ] } @@ -22,9 +28,7 @@ { "title": "blog", "path": "[[workspace]]/src/content/blog", - "contentTypes": [ - "blog" - ] + "contentTypes": ["blog"] } ], "frontMatter.content.publicFolder": { @@ -32,4 +36,4 @@ "relative": true }, "frontMatter.git.enabled": true -} \ No newline at end of file +} diff --git a/src/content/blog/10-essential-web-development-tools-for-building-stunning-websites.mdx b/src/content/blog/10-essential-web-development-tools-for-building-stunning-websites.mdx index e2edcb7..7149bd7 100644 --- a/src/content/blog/10-essential-web-development-tools-for-building-stunning-websites.mdx +++ b/src/content/blog/10-essential-web-development-tools-for-building-stunning-websites.mdx @@ -1,5 +1,6 @@ --- title: '10 Essential Web Development Tools' +description: 'Discover the must-have tools that will take your web development skills to the next level and help you create websites that shine in the digital landscape.' --- Are you ready to elevate your web development game and build stunning websites that captivate your audience? In this blog post, we're diving into the world of web development tools that are essential for creating top-notch websites. From front-end tools that help you craft interactive user interfaces to backend tools that ensure seamless functionality, we've got you covered. Discover how optimization tools can boost your website's performance, visual design tools can make your site stand out, and collaborative tools can streamline your projects for maximum efficiency. Stay tuned as we unveil the must-have tools that will take your web development skills to the next level and help you create websites that shine in the digital landscape diff --git a/src/content/blog/essential-frontend-tools-for-astro-js-developers.mdx b/src/content/blog/essential-frontend-tools-for-astro-js-developers.mdx index 586f73c..2b1f684 100644 --- a/src/content/blog/essential-frontend-tools-for-astro-js-developers.mdx +++ b/src/content/blog/essential-frontend-tools-for-astro-js-developers.mdx @@ -1,5 +1,6 @@ --- title: 'Essential Frontend Tools for Astro.js Developers' +description: 'Discover the essential frontend tools every Astro.js developer should consider integrating into their development process.' --- Astro.js has rapidly become a favorite among developers for building fast, modern web applications. Its unique approach to loading only the necessary JavaScript has paved the way for optimized performance and better user experiences. As an Astro.js developer, having a toolkit filled with essential frontend tools can significantly streamline your workflow and enhance your project's quality. In this blog post, we'll explore those indispensable tools every Astro.js developer should consider integrating into their development process. diff --git a/src/content/blog/exploring-nodejs-development-trends-2024.mdx b/src/content/blog/exploring-nodejs-development-trends-2024.mdx index a7fb41a..7d0a87e 100644 --- a/src/content/blog/exploring-nodejs-development-trends-2024.mdx +++ b/src/content/blog/exploring-nodejs-development-trends-2024.mdx @@ -1,5 +1,6 @@ --- title: 'Exploring the Latest Node.js Development Trends in 2024' +description: 'Explore the latest trends in Node.js development that are shaping the future of web and application development.' --- The landscape of Node.js development is always evolving, with each year bringing new trends, tools, and best practices. As we delve into 2024, it's crucial for developers and businesses alike to stay ahead of the curve. In this blog post, we'll explore the latest trends in Node.js development that are shaping the future of web and application development. diff --git a/src/content/blog/unleasing-the-power-of-astro-js-for-better-web-development.mdx b/src/content/blog/unleasing-the-power-of-astro-js-for-better-web-development.mdx index be6cb4d..29f5441 100644 --- a/src/content/blog/unleasing-the-power-of-astro-js-for-better-web-development.mdx +++ b/src/content/blog/unleasing-the-power-of-astro-js-for-better-web-development.mdx @@ -1,5 +1,6 @@ --- title: 'Unleashing the Power of Astro.js' +description: 'Explore the wonders of Astro.js, a transformative tool reshaping web development.' --- Welcome to an exciting exploration of Astro.js, a transformative tool reshaping web development. This blog post takes you through the wonders of Astro.js, showcasing its ability to boost website performance and introduce unparalleled versatility in modern applications. diff --git a/src/content/config.ts b/src/content/config.ts index ef7a56e..2cec22b 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -4,6 +4,7 @@ const blogCollection = defineCollection({ type: 'content', schema: z.object({ title: z.string(), + describtion: z.string(), }), });