import React, { Component } from 'react' import TypoGraphy from '@mui/material/Typography'; import PropTypes from 'prop-types' //ES6 import styles from './styles.module.css'; import constants from '@lib/constants' import {SITE_CONT_TYPE} from '@lib/constants' export default function Disclosure(props:any) { return (
{constants.SITE_NAME}, owned by {constants.COMPANY_NAME}, receives compensation through affiliate relationships with merchants listed on this site. Please know that this in no way affects reviews, benchmarks, content, or this site's opinions of products, services, manufacturers, partners, or merchants. The mission of {constants.SITE_NAME} is to provide the best functionality for this site's users, regardless of any potential affiliate commissions. {constants.SITE_NAME} does not accept donations. Instead, income received from affiliate relationships funds site maintenance and feature development. If you desire to donate to PCPartPicker, I kindly ask that you consider donating to a charitable organization instead. I am particularly fond of the NRA, a non-profit organization that provides safety training to gun owners.
Content goes here
Thanks, {constants.COMPANY_NAME} {constants.SITE_NAME} is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to amazon.com.
) } Disclosure.propTypes = { };