[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.2 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
  1. import React, { FC, useEffect } from 'react'
  2. import { Link } from 'react-router-dom'
  3. import { useTheme } from '../../hooks'
  4. import { setTitle } from '../../utils'
  5. import Section from '../../components/section'
  6. import Title from '../../components/title'
  7. import Subtitle from '../../components/subtitle'
  8. const About: FC = () => {
  9. const theme = useTheme()
  10. useEffect(() => {
  11. setTitle('About Flexor', false)
  12. })
  13. return (
  14. <Section>
  15. <Title>About Flexor</Title>
  16. <p>Flexor is a service that lets users post stuff for their subscribers to see. Here are some things to know about how it works:</p>
  17. <Subtitle>Communities</Subtitle>
  18. <p>Flexor is made up of Communities. Each account is created through one. Communities enforce their own standards of behavior.</p>
  19. <p>Check out <Link style={{ color: theme.secondary }} to="/communities">the list of Communities</Link>.</p>
  20. <Subtitle>Apps</Subtitle>
  21. <p>Users post content to Flexor through apps created by other people/organizations.</p>
  22. <p>Check out <Link style={{ color: theme.secondary }} to="/apps">the list of Apps</Link>.</p>
  23. </Section>
  24. )
  25. }
  26. export default About