refactor: 移除未使用的代码和资源,优化项目结构

- 删除未使用的图片、SVG图标和组件
- 清理废弃的代码文件和依赖项
- 简化UI组件接口定义
- 更新部分文案为中文
- 移除博客相关功能
- 添加Telegram联系方式
This commit is contained in:
2026-01-22 14:52:45 +08:00
parent 426e9e0210
commit d3344e8961
54 changed files with 4882 additions and 2526 deletions

View File

@@ -34,7 +34,7 @@ const buttonVariants = cva(
}
);
export interface ButtonProps
interface ButtonProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof buttonVariants> {
asChild?: boolean;
@@ -54,4 +54,4 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
);
Button.displayName = "Button";
export { Button, buttonVariants };
export { Button };