This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individ
This is a Next.js, Tailwind CSS blogging starter template. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable. Perfect as a replacement to existing Jekyll and Hugo individ
Next.js 是一套 React 体系的 SSR (服务端渲染)方案,现在很多前端网站实际上是 SPA (单页应用),就只有一个 index.html ,然后附带一个很大的 js 来实现页面渲染和交互,这种小规模的网站还好,网站越大速度就越慢,所以说技术这个车轮又滚回去了,当初被「前后端分离」那帮人嫌弃的后端渲染又回来了,React 有 ne...
距离上次更新已经过去好久了,之前我在 StarBlog 博客2023年底更新一览的文章里说要使用 Next.js 来重构博客前端,最近也确实用 next.js 做了两个小项目,一个是单点认证项目,另一个是网站的新主页,都还处于开发中,本文记录一下 next.js 使用过程遇到的一些问题和感受。 对了,还有标题里提到的 tailwind ,我去年...
Tailwind Nextjs Starter BlogThis is a Next.js, Tailwind CSS blogging starter template. Probably the most feature-rich Next.js markdown blogging template out there. Comes out of the box configured with the latest technologies to make technical writing a breeze. Easily configurable and customizable....
本博客项目已在 Github 开源,地址:https://github.com/Chocolate1999/nextjs-tailwind-blog 博客样式参考了 antfu 的博客页面,自己也用 React 写了他的梅开二度效果。这是第一个版本,已经上线了,地址在:https://blog.yangchaoyi.vip/ 科技猎手 编程 科技 计算机技术 nextjs 前端 科技猎手计划2022第三期 ...
An open-source starter blog template that is statically generated with Next.js, content powered by Notion and styled with Tailwind CSS.
如果您点头表示同意,那么“通过构建终极博客应用程序学习 tRPC、NextJs 和 Prisma”就是适合您的课程!在本课程中,我将指导您使用现代技术(例如NextJs、Tailwind、tRPC、Prisma 和 NextAuth)从头开始创建功能丰富的动态博客应用程序。您将有机会实现诸如发布文章、更新个人资料和头像、添加对多个标签的支持、从 Unsplash ...
MERN 项目:实时聊天应用教程 - React.js & Socket.io 04:36:36 使用Next.js 15 建立全栈社交体应用(React Query、Lucia Auth、TypeScript、Tailwind) 07:37:11 使用Next.js 15 建立全栈社交体应用 Part 2 08:11:24 全栈NextJs 课程:使用 React、Tailwind css 构建 AI 笔记应用 | SaaS 应用 04:11:...
nextjs的服务端组件能够很好的支持这种需求。我们可以通过服务端组件来通过node api读取markdown文件,解析markdown内容,然后渲染到页面上。 在编写代码之前,你需要了解下nextjs基本工作原理,app router工作原理,以及动态路由工作原理。这样你才能更好的理解下面的代码。