"use client"; import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from "@/components/ui/carousel"; import Image from "next/image"; const PpsSection = () => { const image = [ { id: 1, src: "/assets/PPS.png", }, { id: 2, src: "/assets/contoh6.png", }, { id: 3, src: "/assets/contoh7.png", }, ]; return (
{image?.map((news: any, index) => ( pps {/*
{news.tag} {news.category}

{news.date}

{news.title}

{news.description}

*/}
))}
); }; export default PpsSection;