feat: 优化首页个人名片与内容入口

This commit is contained in:
2026-07-16 23:51:55 +08:00
parent 92360e4f49
commit 991264c32c
25 changed files with 1158 additions and 130 deletions
+4
View File
@@ -1,10 +1,14 @@
---
title: Docker 编译 musl 可执行文件
published: 2025-03-27
updated: 2025-03-27
image: /posts/docker-musl-build/img/cover.svg
description: 解决 Go 语言跨平台编译问题,使用 Docker + musl 编译静态链接的可执行文件。
tags: ['Docker', 'Go', '运维']
draft: false
series: Docker 实践笔记
seriesOrder: 1
difficulty: 进阶
---
## 解决问题
+4
View File
@@ -1,10 +1,14 @@
---
title: Docker 构建时指定用户启动
published: 2025-04-01
updated: 2025-04-01
image: /posts/docker-user-start/img/cover.svg
description: 解决 Docker 容器默认以 root 用户运行导致的权限问题,指定非 root 用户启动应用。
tags: ['Docker', '运维', 'Linux']
draft: false
series: Docker 实践笔记
seriesOrder: 2
difficulty: 入门
---
## 前言
+4
View File
@@ -1,10 +1,14 @@
---
title: Go 单文件打包实战:把前端塞进二进制
published: 2026-06-06T16:00:00
updated: 2026-06-06
description: 记录将 Vue 3 前端嵌入 Go 二进制实现单 exe 发布的完整流程,以及遇到的坑和解决方案。
image: /posts/go-embed-frontend/img/cover.jpg
tags: ['Go', 'Vue', '编译', '埋坑']
draft: false
series: Go 工程实践
seriesOrder: 2
difficulty: 进阶
---
## 背景
+4
View File
@@ -1,9 +1,13 @@
---
title: Go-MCP 接入 Gin:从零搭建 MCP 服务器
published: 2026-06-01T00:50:00
updated: 2026-06-01
description: 介绍如何使用 mark3labs/mcp-go 与 Gin 框架集成,搭建一个带鉴权的 MCPModel Context Protocol)服务器,让 AI Agent 能直接调用你的后端服务。
image: /posts/go-mcp-gin/img/cover.svg
tags: ['Go', 'MCP', 'Gin', 'AI Agent', '后端']
series: Go 工程实践
seriesOrder: 1
difficulty: 进阶
---
## 什么是 MCP
+4
View File
@@ -1,11 +1,15 @@
---
title: Hello World - 欢迎来到尼克的小窝
published: 2026-05-31T08:00:00
updated: 2026-05-31
description: 博客上线啦!这篇文章介绍本站的技术架构、功能特性和搭建过程中的一些思考。
image: /posts/hello-world/img/cover.jpg
pinned: true
tags: ['博客', 'Nuxt']
draft: false
series: Nuxt 博客开发
seriesOrder: 1
difficulty: 入门
---
## 博客上线啦!
@@ -1,10 +1,14 @@
---
title: Nuxt Content v3 踩坑记录:目录、图片与那些反直觉的设计
published: 2026-05-31T14:00:00
updated: 2026-05-31
description: 从 SvelteKit 迁移到 Nuxt 3 的过程中,遇到了不少 Nuxt Content v3 的坑。这篇文章记录了目录导航、图片路径、ProseImg 组件等问题的排查和解决过程。
image: /posts/nuxt-content-lessons/img/cover.jpg
tags: ['Nuxt', '踩坑', 'Nuxt Content']
draft: false
series: Nuxt 博客开发
seriesOrder: 2
difficulty: 进阶
---
# 背景
@@ -1,10 +1,14 @@
---
title: Nuxt 3 + Tailwind CSS 客户端导航链接下划线闪烁问题
published: 2026-05-31T18:47:00
updated: 2026-05-31
image: /posts/nuxt-tailwind-underline-fix/img/cover.png
description: 记录 Nuxt 3 配合 Tailwind CSS 时,客户端导航导致链接文字出现下划线闪烁的问题及解决方案。
tags: ['Nuxt', 'Tailwind CSS', 'CSS', '踩坑']
author: Nixus
series: Nuxt 博客开发
seriesOrder: 3
difficulty: 进阶
---
## 问题描述