UNPKG

phenomic

Version:

Modern website generator based on the React and Webpack ecosystem.

23 lines (19 loc) 533 B
import React from "react" import styles from "./index.css" const Footer = () => ( <footer className={ styles.footer }> { /* If you like Phenomic, this is a way to share the love ;) */ } <p> <a href={ process.env.PHENOMIC_HOMEPAGE } className={ styles.phenomicReference } > { "Website generated with " } <span className={ styles.phenomicReferenceName }> { `<${ process.env.PHENOMIC_NAME} />` } </span> </a> </p> </footer> ) export default Footer