diff --git a/packages/functions/content/building-a-super-powered-layout-with-css-grid.mdx b/packages/functions/content/building-a-super-powered-layout-with-css-grid.mdx index 229dc1c..9059684 100644 --- a/packages/functions/content/building-a-super-powered-layout-with-css-grid.mdx +++ b/packages/functions/content/building-a-super-powered-layout-with-css-grid.mdx @@ -4,6 +4,8 @@ abstract: CSS grid is the latest and greatest layout mode for building two-dimen tags: ['css', 'grid', 'flexbox'] isPublished: 1 publishedOn: 2024-03-13 +views: 56 +likes: 151 --- CSS grid is the latest layout mode which makes it a joy to create two-dimensional layouts, and with [great browser support](https://caniuse.com/css-grid) it can be used just about anywhere, even IE 10! diff --git a/packages/functions/content/chained-ternaries-are-great.mdx b/packages/functions/content/chained-ternaries-are-great.mdx index d5e0fde..8327a4a 100644 --- a/packages/functions/content/chained-ternaries-are-great.mdx +++ b/packages/functions/content/chained-ternaries-are-great.mdx @@ -4,6 +4,8 @@ abstract: Echoing a fantastic post by Eric Elliot, a favorite from my formative tags: ['javascript'] isPublished: 1 publishedOn: 2024-03-12 +views: 56 +likes: 151 --- At my first software engineering gig I spent a lot of time on Medium.com reading about how other developers thought about code and looking for inspiration about how to contribute to my team's best practices. diff --git a/packages/functions/content/how-i-built-yet-another-developer-blog.mdx b/packages/functions/content/how-i-built-yet-another-developer-blog.mdx index 551eaf6..69d4a89 100644 --- a/packages/functions/content/how-i-built-yet-another-developer-blog.mdx +++ b/packages/functions/content/how-i-built-yet-another-developer-blog.mdx @@ -5,6 +5,8 @@ tags: ['nextjs', 'react', 'serverless', 'sst', 'css', 'monorepo', 'sql', 'postgres'] isPublished: 1 publishedOn: 2024-03-12 +views: 56 +likes: 151 --- The web development ecosystem has changed a lot since my early days with [Bootstrap](https://getbootstrap.com/) and [jQuery](https://jquery.com/). diff --git a/packages/functions/content/using-server-actions-to-build-an-interactive-upvote-widget.mdx b/packages/functions/content/using-server-actions-to-build-an-interactive-upvote-widget.mdx index dca3388..f38bee8 100644 --- a/packages/functions/content/using-server-actions-to-build-an-interactive-upvote-widget.mdx +++ b/packages/functions/content/using-server-actions-to-build-an-interactive-upvote-widget.mdx @@ -4,6 +4,8 @@ abstract: Server Actions are a cutting-edge React feature we can use to our adva tags: ['react', 'nextjs', 'serveractions'] isPublished: 1 publishedOn: 2024-03-13 +views: 56 +likes: 151 --- [Server actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations) are a brand new, cutting-edge React feature only usable in frameworks that support it like Next.js. Next.js defines them as asynchronous functions that are executed on the server, while the [React documentation](https://react.dev/reference/react/use-server) defines them as server-side functions that can be called from client-side code.