19 lines
348 B
TypeScript
Raw Normal View History

import { Card } from '~/components/ui/card'
import { Carousel } from '~/components/ui/carousel'
import { Newsletter } from './newsletter'
export const NewsPage = () => {
return (
<div className="relative">
<Card>
<Carousel />
</Card>
<Newsletter />
<Card>
<Carousel />
</Card>
</div>
)
}