24 lines
517 B
TypeScript
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>
|
|
)
|
|
}
|