7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
|
export default function Logo() {
|
||
|
return (
|
||
|
<div className="p-5 bg-white rounded-lg">
|
||
|
<h1 className="text-4xl font-bold text-center text-gray-800">AI工具集</h1>
|
||
|
</div>
|
||
|
)
|
||
|
}
|