From ff83f50cfc08f6ccc4d10bf85e205e7e3f2a0d3f Mon Sep 17 00:00:00 2001 From: dejmedus Date: Sat, 1 Oct 2022 20:38:54 -0600 Subject: [PATCH] refactor: capitalization and spelling --- components/FeedbackForm/FeedbackForm.tsx | 2 +- components/Footer/Footer.tsx | 2 +- pages/404/ErrorMessage.tsx | 4 ++-- pages/about/components/Gallery.tsx | 6 +++--- pages/about/components/OurStory.tsx | 6 +++--- pages/faq/FAQ.tsx | 18 +++++++++--------- pages/home/components/Features.tsx | 4 ++-- pages/home/components/Intro.tsx | 2 +- pages/home/components/JoinTheCommunityForm.tsx | 2 +- pages/register/Register.tsx | 4 ++-- 10 files changed, 25 insertions(+), 25 deletions(-) diff --git a/components/FeedbackForm/FeedbackForm.tsx b/components/FeedbackForm/FeedbackForm.tsx index f3fd42d..2253278 100644 --- a/components/FeedbackForm/FeedbackForm.tsx +++ b/components/FeedbackForm/FeedbackForm.tsx @@ -83,7 +83,7 @@ export const FeedbackForm: FC = ({}) => { await axios.post("/api/feedback", { formData, captcha: captchaToken }); setShowSuccess(true); } catch (e) { - errorMsg.current = "Some error occured! Please try again later."; + errorMsg.current = "Some error occurred! Please try again later."; setShowError(true); console.error(e); } diff --git a/components/Footer/Footer.tsx b/components/Footer/Footer.tsx index 57973b5..6bfcf71 100644 --- a/components/Footer/Footer.tsx +++ b/components/Footer/Footer.tsx @@ -96,7 +96,7 @@ export const Footer: FC = ({}) => { flexGrow={1} maxWidth={650} > - Ourmissionis to change the people cover their + Ourmissionis to change the way people cover their last-mileby making walking more fun and the preferredway to commute. diff --git a/pages/404/ErrorMessage.tsx b/pages/404/ErrorMessage.tsx index 3919a37..92b2207 100644 --- a/pages/404/ErrorMessage.tsx +++ b/pages/404/ErrorMessage.tsx @@ -15,7 +15,7 @@ export const ErrorMessage: NextPage = () => { 404 | Page Not Found { fontWeight="400" > Looks like this page is missing. Don’t worry though, our best man is - on the case!
meanwhile, please headback. + on the case!
Meanwhile, please head back. diff --git a/pages/about/components/Gallery.tsx b/pages/about/components/Gallery.tsx index abb3702..430bbb9 100644 --- a/pages/about/components/Gallery.tsx +++ b/pages/about/components/Gallery.tsx @@ -16,9 +16,9 @@ export const Gallery: FC = ({}) => { Every groundbreaking App begins with a series of small ideas that are combined into an all inclusive one. At WalkingPal, we wanted to change - how consumers see the concept of Walking to commute daily, by offering a - simple and user-friendly platform they can trust. Now having a Walking - Buddy anytime and anywhere is easier than ever! + how consumers see the concept of walking to commute daily, by offering a + simple and user-friendly platform they can trust. Now having a walking + buddy anytime and anywhere is easier than ever! ); diff --git a/pages/about/components/OurStory.tsx b/pages/about/components/OurStory.tsx index e9547e2..8f21543 100644 --- a/pages/about/components/OurStory.tsx +++ b/pages/about/components/OurStory.tsx @@ -68,19 +68,19 @@ export const OurStory: FC = () => { diff --git a/pages/faq/FAQ.tsx b/pages/faq/FAQ.tsx index 313777d..0e12e9b 100644 --- a/pages/faq/FAQ.tsx +++ b/pages/faq/FAQ.tsx @@ -14,10 +14,10 @@ const generalFAQs = [ desc: "We are currently in private beta stage. You could either register as an early user and become a beta tester or wait for the public release soon.", }, { - faq: "How walkingpal works?", + faq: "How does WalkingPal work?", desc: ( <> - WalkingPal scans all the nearly people that are in need of a walking + WalkingPal scans all the nearby people that are in need of a walking buddy, and it connects you with your nearest walking buddy going towards the same direction and destination as you.
@@ -27,12 +27,12 @@ const generalFAQs = [ ), }, { - faq: "What Platforms do we support?", - desc: "We will be launching our android app first and subsequently it will be available on the Apple app store in future.", + faq: "What platforms do we support?", + desc: "We will be launching our Android app first and subsequently it will be available on the Apple App Store in future.", }, { faq: "Where can we download the app?", - desc: "You can download WalkingPal on the Google play store post our private beta test. As of now you can register for it and we will notify you when it is available.", + desc: "You can download WalkingPal on the Google Play Store post our private beta test. As of now you can register for it and we will notify you when it is available.", }, ]; @@ -43,7 +43,7 @@ const TrustnSafetyFAQs = [ }, { faq: "What about fake users?", - desc: "In order to minimise fake users, we will be verifying the identity of every user by a government approved I’d, like passport, Aadhar Card, Etc. So that no one ends up with an undocumented person.", + desc: "In order to minimise fake users, we will be verifying the identity of every user by a government approved ID, like passport, Aadhar Card, Etc. So that no one ends up with an undocumented person.", }, { faq: "How will you ensure the safety of the users?", @@ -59,9 +59,9 @@ const TrustnSafetyFAQs = [
  • After you start walking with your walking buddy there will be an SOS - bubble popup on the screen (kinda like a messenger bubble). If you - are in danger or at an uncomfortable position you can just tap on - that bubble and a notification will be sent to all your emergence + bubble pop up on the screen (kind of like a messenger bubble). If + you are in danger or in an uncomfortable position you can just tap + on that bubble and a notification will be sent to all your emergency contacts and to us as well and we will try our best to help you out in every possible way.
  • diff --git a/pages/home/components/Features.tsx b/pages/home/components/Features.tsx index 1a1f68c..d54de37 100644 --- a/pages/home/components/Features.tsx +++ b/pages/home/components/Features.tsx @@ -6,14 +6,14 @@ import styles from "../home.module.scss"; const features = [ { title: "Last-Mile", desc: "Cover your last mile with your walking buddy." }, { - title: "New frienships", + title: "New friendships", desc: "Meet new people and nurture new friendships.", }, { title: "Local connection", desc: "A chance to have a local connection in an new city.", }, - { title: "Fun. and Chill.", desc: "Walk have fun and chill together." }, + { title: "Fun and chill.", desc: "Walk, have fun, and chill together." }, ]; export const Features: FC = () => { return ( diff --git a/pages/home/components/Intro.tsx b/pages/home/components/Intro.tsx index 48f39bf..1e395b3 100644 --- a/pages/home/components/Intro.tsx +++ b/pages/home/components/Intro.tsx @@ -78,7 +78,7 @@ export const Intro: FC = ({}) => { Create Groups - Go solo or create a walking group on the go. anytime, anywhere! + Go solo or create a walking group on the go. Anytime, anywhere! diff --git a/pages/home/components/JoinTheCommunityForm.tsx b/pages/home/components/JoinTheCommunityForm.tsx index 1187b10..4314696 100644 --- a/pages/home/components/JoinTheCommunityForm.tsx +++ b/pages/home/components/JoinTheCommunityForm.tsx @@ -30,7 +30,7 @@ const CommunityForm: FC = () => { Join the community - Subscribe to our news letter to stay updated with our latest + Subscribe to our newsletter to stay updated with our latest offerings. diff --git a/pages/register/Register.tsx b/pages/register/Register.tsx index 742a698..8f732c4 100644 --- a/pages/register/Register.tsx +++ b/pages/register/Register.tsx @@ -13,7 +13,7 @@ export const Register: NextPage = () => { return ( <> - Early User Registeration + Early User Registration { color="white" fontWeight={500} > - Thankyou for your interest in WalkingPal! + Thank you for your interest in WalkingPal! */} {isSubmitted ? (