diff --git a/src/components/Collection.tsx b/src/components/Collection.tsx new file mode 100644 index 0000000..ddf3c9a --- /dev/null +++ b/src/components/Collection.tsx @@ -0,0 +1,65 @@ +import React, { FC } from "react"; +import ButtonSecondary from "@/shared/ButtonSecondary"; +import Link from "next/link"; +import Image from "next/image"; + +export interface CollectionProps { + className?: string; + featuredImage?: string; + name?: string; + desc?: string; + color?: string; +} + +const Collection: FC = ({ + className = "", + featuredImage = "https://images.pexels.com/photos/5059013/pexels-photo-5059013.jpeg?auto=compress&cs=tinysrgb&w=1600", + name = "Collection", + desc = "The most popular
in the world", + color, +}) => { + return ( + +
+
+ +
+ + +
+
+
+ + {name} + + {desc && ( +

+ )} +
+
+ + Show more + +
+
+
+
+ + ); +}; + +export default Collection;