import React from "react";
import {
ImageItem,
PhoneCarousel,
} from "@/components/docs-components/phone-carousel";
const exampleImages: ImageItem[] = [
{
src: "https://res.cloudinary.com/harshitproject/image/upload/v1746774805/Behance-screen.png",
alt: "Behance app on iPhone",
},
{
src: "https://res.cloudinary.com/harshitproject/image/upload/v1746774805/Notion-screen.png",
alt: "Notion app on iPhone",
},
{
src: "https://res.cloudinary.com/harshitproject/image/upload/v1746774806/One-screen.png",
alt: "One app on iPhone",
},
{
src: "https://res.cloudinary.com/harshitproject/image/upload/v1746774807/Reddit-nj7hwh.png",
alt: "Reddit app on iPhone",
},
];
export function PhoneMockupBasic() {
return <PhoneCarousel images={exampleImages} />;
}