diff --git a/frontend/apps/service-site/contentlayer.config.ts b/frontend/apps/service-site/contentlayer.config.ts index dacc8b6cb..d05cb2f14 100644 --- a/frontend/apps/service-site/contentlayer.config.ts +++ b/frontend/apps/service-site/contentlayer.config.ts @@ -33,7 +33,7 @@ export const Post = defineDocumentType(() => ({ image: { type: 'string', required: true }, writer: { type: 'string', required: true }, writerProfile: { type: 'string' }, - lastEditedOn: { type: 'date' }, + lastEditedAt: { type: 'date' }, introduction: { type: 'string', required: true }, }, computedFields: { diff --git a/frontend/apps/service-site/src/contents/posts/1/en.mdx b/frontend/apps/service-site/src/contents/posts/1/en.mdx index 1c40bcfbe..2fa5b75fa 100644 --- a/frontend/apps/service-site/src/contents/posts/1/en.mdx +++ b/frontend/apps/service-site/src/contents/posts/1/en.mdx @@ -38,7 +38,7 @@ writerProfile: >- Technology writer and digital strategy consultant. Author of "Beyond the Code: Building the Future." Originally from the United States, Aiden specializes in no-code development and digital transformation. Currently focused on exploring the latest trends in AI and automation while continuing his writing endeavors. -lastEditedOn: 2024-09-27 +lastEditedAt: 2024-09-27 introduction: "In a world where technology is rapidly evolving, the demand for software applications has never been higher. However, the traditional approach to app development—requiring deep coding knowledge—has often been a barrier for many individuals and businesses. Enter the no-code revolution, a game-changing movement that is democratizing the app development process. No longer do you need to be a skilled programmer to create powerful, functional apps. Today, anyone with a creative idea and basic computer skills can bring their vision to life using no-code platforms." --- diff --git a/frontend/apps/service-site/src/features/posts/components/PostWriter/PostWriter.tsx b/frontend/apps/service-site/src/features/posts/components/PostWriter/PostWriter.tsx index d10ac174a..26a6646b4 100644 --- a/frontend/apps/service-site/src/features/posts/components/PostWriter/PostWriter.tsx +++ b/frontend/apps/service-site/src/features/posts/components/PostWriter/PostWriter.tsx @@ -17,11 +17,11 @@ export const PostWriter: FC = ({ post }) => { {post.writerProfile && (

{post.writerProfile}

)} - {post.lastEditedOn && ( + {post.lastEditedAt && (

Last edited on -

)} diff --git a/frontend/apps/service-site/src/features/posts/factories.ts b/frontend/apps/service-site/src/features/posts/factories.ts index 53e4282b6..285c7074d 100644 --- a/frontend/apps/service-site/src/features/posts/factories.ts +++ b/frontend/apps/service-site/src/features/posts/factories.ts @@ -22,7 +22,7 @@ export const aPost = (override?: Params): Post => { image: '/images/posts/14/image.png', writerProfile: 'A seasoned technical writer with over five years of experience, providing in-depth insights on the latest technology trends and innovations. She specializes in analyzing emerging technologies, translating complex concepts into accessible content for a broad audience, and contributing to various industry-leading publications.', - lastEditedOn: '2024-09-12', + lastEditedAt: '2024-09-12', introduction: 'No-code platforms are revolutionizing the way businesses approach application development by empowering users to create software without traditional coding skills. In this post, we explore the profound impact of no-code platforms on the tech industry and what the future holds. First, the emergence of no-code platforms has democratized software development, making it accessible to a much wider audience beyond those with specialized programming knowledge. This shift has significantly lowered the barriers to innovation, enabling a diverse range of ideas to come to fruition. By providing intuitive, visual interfaces and pre-built components, these platforms allow individuals from various backgrounds to transform their concepts into functional applications', body: {