ZZY 73917d6001 dev feat(markcard, static): 实现书签卡片功能和静态资源获取
- 书签卡片相关的组件和页面
- 实现书签数据的获取、添加、编辑和删除功能
- 添加用户验证和权限控制
- 优化页面布局和样式
2024-12-22 15:21:07 +08:00

24 lines
517 B
TypeScript

import React from 'react'
import { AlertCircle } from "lucide-react"
import {
Alert,
AlertDescription,
AlertTitle,
} from "@/components/ui/alert"
export default function AlertWeb() {
return (
<div>
<Alert>
<AlertCircle className="h-4 w-4" />
<AlertTitle> Waring</AlertTitle>
<AlertDescription>
使
This website is for personal learning purposes only
</AlertDescription>
</Alert>
</div>
)
}