Skip to content

Commit

Permalink
refactor: update wording
Browse files Browse the repository at this point in the history
  • Loading branch information
kumanoayumi committed Oct 18, 2024
1 parent 3c31921 commit 838dd05
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/apps/service-site/contentlayer.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion frontend/apps/service-site/src/contents/posts/1/en.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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."
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export const PostWriter: FC<Props> = ({ post }) => {
{post.writerProfile && (
<p className={styles.writerProfile}>{post.writerProfile}</p>
)}
{post.lastEditedOn && (
{post.lastEditedAt && (
<p className={styles.lastEdited}>
<span>Last edited on</span>
<time dateTime={post.lastEditedOn}>
{format(parseISO(post.lastEditedOn), 'MMM d, yyyy')}
<time dateTime={post.lastEditedAt}>
{format(parseISO(post.lastEditedAt), 'MMM d, yyyy')}
</time>
</p>
)}
Expand Down
2 changes: 1 addition & 1 deletion frontend/apps/service-site/src/features/posts/factories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 838dd05

Please sign in to comment.