feat(blog): add description to blogposts
This commit is contained in:
parent
be9eb24b18
commit
eff2466873
@ -12,6 +12,12 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"single": true,
|
"single": true,
|
||||||
"required": true
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "description",
|
||||||
|
"type": "string",
|
||||||
|
"single": true,
|
||||||
|
"required": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -22,9 +28,7 @@
|
|||||||
{
|
{
|
||||||
"title": "blog",
|
"title": "blog",
|
||||||
"path": "[[workspace]]/src/content/blog",
|
"path": "[[workspace]]/src/content/blog",
|
||||||
"contentTypes": [
|
"contentTypes": ["blog"]
|
||||||
"blog"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"frontMatter.content.publicFolder": {
|
"frontMatter.content.publicFolder": {
|
||||||
@ -32,4 +36,4 @@
|
|||||||
"relative": true
|
"relative": true
|
||||||
},
|
},
|
||||||
"frontMatter.git.enabled": true
|
"frontMatter.git.enabled": true
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: '10 Essential Web Development Tools'
|
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
|
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
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: 'Essential Frontend Tools for Astro.js Developers'
|
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.
|
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.
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: 'Exploring the Latest Node.js Development Trends in 2024'
|
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.
|
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.
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: 'Unleashing the Power of Astro.js'
|
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.
|
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.
|
||||||
|
|||||||
@ -4,6 +4,7 @@ const blogCollection = defineCollection({
|
|||||||
type: 'content',
|
type: 'content',
|
||||||
schema: z.object({
|
schema: z.object({
|
||||||
title: z.string(),
|
title: z.string(),
|
||||||
|
describtion: z.string(),
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user