feat: add KAJIAN section to news page and update content structure

This commit is contained in:
fredy.siswanto
2025-03-02 12:15:31 +07:00
parent 4aa6c8d0d4
commit aaba207165
4 changed files with 43 additions and 185 deletions
+9 -4
View File
@@ -2,7 +2,7 @@ import { Card } from '~/components/ui/card'
import { CarouselHero } from '~/components/ui/carousel-hero'
import { CarouselSection } from '~/components/ui/carousel-section'
import { Newsletter } from '~/components/ui/newsletter'
import { BERITA, SPOTLIGHT } from '~/data/contents'
import { BERITA, KAJIAN, SPOTLIGHT } from '~/data/contents'
export const NewsPage = () => {
return (
@@ -13,9 +13,14 @@ export const NewsPage = () => {
<div className="min-h-[400px] sm:min-h-[300px]">
<Newsletter className="mr-0 sm:-ml-14" />
</div>
<Card>
<CarouselSection {...BERITA} />
</Card>
<div>
<Card>
<CarouselSection {...BERITA} />
</Card>
<Card>
<CarouselSection {...KAJIAN} />
</Card>
</div>
</div>
)
}