import { CardStroke } from "@/components/ui/card-stroke"export default function Page() {
return (
<CardStroke
title="Card Title"
description="A small two line paragraph passed by prop."
imageSrc="https://images.unsplash.com/photo-1773058373644-74e4120bfc77?q=80&w=1200&auto=format&fit=crop"
imageAlt="Placeholder preview image"
accentStrokeColor="#E0E0E0"
baseStrokeColor="#2B7FFF"
textColor="#F5F5F5"
/>
)
}