2025-02-03 18:48:49 +08:00
|
|
|
import { Card } from '~/components/ui/card'
|
|
|
|
|
import { Carousel } from '~/components/ui/carousel'
|
|
|
|
|
|
|
|
|
|
import { Newsletter } from './newsletter'
|
|
|
|
|
|
2025-02-03 17:01:56 +08:00
|
|
|
export const NewsPage = () => {
|
2025-01-31 19:34:22 +08:00
|
|
|
return (
|
2025-02-03 18:48:49 +08:00
|
|
|
<div className="relative">
|
|
|
|
|
<Card>
|
|
|
|
|
<Carousel />
|
|
|
|
|
</Card>
|
|
|
|
|
<Newsletter />
|
|
|
|
|
<Card>
|
|
|
|
|
<Carousel />
|
|
|
|
|
</Card>
|
2025-02-03 17:01:56 +08:00
|
|
|
</div>
|
2025-01-31 19:34:22 +08:00
|
|
|
)
|
|
|
|
|
}
|