import React from "react"; import PropTypes from "prop-types"; function DarkFeatureF(props) { return (

Shooting Stars

Blue bottle crucifix vinyl post-ironic four dollar toast vegan taxidermy. Gastropub indxgo juice poutine.

Learn More

The Catalyzer

Blue bottle crucifix vinyl post-ironic four dollar toast vegan taxidermy. Gastropub indxgo juice poutine.

Learn More

The 400 Blows

Blue bottle crucifix vinyl post-ironic four dollar toast vegan taxidermy. Gastropub indxgo juice poutine.

Learn More
); } DarkFeatureF.defaultProps = { theme: 'indigo' }; DarkFeatureF.propTypes = { theme: PropTypes.string.isRequired }; export default DarkFeatureF;