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

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

Neptune

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

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