From 7ae7fb42a40c38b6125558273d25643a8b7c4f72 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Mon, 18 Feb 2019 18:08:24 +0530 Subject: [PATCH] feat(pages): import support page to subdirectory --- client/src/components/Footer/index.js | 2 +- client/src/pages/support.js | 118 ++++++++++++++++++++++++++ 2 files changed, 119 insertions(+), 1 deletion(-) create mode 100644 client/src/pages/support.js diff --git a/client/src/components/Footer/index.js b/client/src/components/Footer/index.js index 8b7d723df9..76a3cf94b1 100644 --- a/client/src/components/Footer/index.js +++ b/client/src/components/Footer/index.js @@ -72,7 +72,7 @@ function Footer() { Gitter GitHub - Support + Support Code of Conduct diff --git a/client/src/pages/support.js b/client/src/pages/support.js new file mode 100644 index 0000000000..c5f011a7c4 --- /dev/null +++ b/client/src/pages/support.js @@ -0,0 +1,118 @@ +/* eslint-disable max-len */ +import React, { Fragment } from 'react'; +import Helmet from 'react-helmet'; +import { Grid, Col, Row } from '@freecodecamp/react-bootstrap'; + +import { Link, Spacer } from '../components/helpers'; + +import './about.css'; + +const SupportPage = () => { + return ( + + + + + + +

Common Technical Support Questions

+
+

+ I just signed into my account and I don't see any of my past + progress. +

+

+ You have created a duplicate account.{' '} + + Sign out of your account + {' '} + and try signing in using a different service (Google, GitHub, + Facebook) that you may have used to in the past. Or try signing in + using an email address you may have used on freeCodeCamp in the + past. +

+

+ I set up a monthly donation, but I need to update or cancel the + monthly recurrence. How can I do this? +

+

+ We are working on a dashboard for you to be able to update or + cancel your donations right from your settings page. In the + meantime, if you need to update or cancel your monthly donation, + forward an invoice you received in your email to{' '} + team@freecodecamp.org{' '} + and tell us what you'd like us to do, and we'll take care of it + for you in our database. +

+

How can I view my past solutions?

+

+ We have archived the millions of solutions from prior to June + 2018, and are working on a sustainable way to host them and future + solutions. +

+

+ You can meanwhile use the download my solution button to view and + copy the solution after you complete a challenge, from the local + copy on your browser. +

+

My streak on my portfolio is inaccurate.

+

+ We are working on fixing a number of issues with the streaks on + freeCodeCamp. Thanks for your patience. +

+

+ When I go to{' '} + + Learning Curriculum + {' '} + the challenges are completely blank. +

+

+ Do a hard refresh of the website by pressing control+shift+r in + Windows or command+shift+r on Mac/Linux. If that doesn't work, you + may need to clear your cookies. Here is{' '} + + how to clear specific cookies + + . +

+

+ One of my freeCodeCamp challenges freezes and crashes when I open + it. +

+

+ This is caused by an infinite loop in your code editor.{' '} + + Here's how to fix this + + . +

+

I have a support question that isn't answered here.

+

+ You can ask for help on our forum, and the freeCodeCamp volunteer + contributor team will do their best to help you. Note that for + privacy and security reasons, they don't have access to your + account in the freeCodeCamp database. Also note that you will need + to create a forum account if you don't already have one.{' '} + + Click here to ask your support question + + . +

+ +
+
+
+ ); +}; + +SupportPage.displayName = 'SupportPage'; + +export default SupportPage;