Spaces:
Sleeping
Sleeping
File size: 474 Bytes
6454d9a f5c551a 6454d9a f5c551a 6454d9a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import React from 'react'
import './index.css' // 确保将CSS样式保存在此文件中
const UpgradeBanner = () => {
const handleClick = () => {
window.open('https://aicomicfactory.com/pricing')
}
return (
<div
className="flex justify-center items-center py-2"
onClick={handleClick}>
<button className="upgrade-banner">
<span className="upgrade-text">UPGRADE</span>
</button>
</div>
)
}
export default UpgradeBanner
|