diff --git a/src/components/DeveloperCard.jsx b/src/components/DeveloperCard.jsx new file mode 100644 index 0000000..a36a86b --- /dev/null +++ b/src/components/DeveloperCard.jsx @@ -0,0 +1,19 @@ +import { FaLinkedin, FaGithub } from 'react-icons/fa'; + +export function DeveloperCard({ name, githubLink, linkedinLink }) { + return ( +
+ +
+ ); +} diff --git a/src/components/ListItem.jsx b/src/components/ListItem.jsx index b834453..729d761 100644 --- a/src/components/ListItem.jsx +++ b/src/components/ListItem.jsx @@ -52,7 +52,7 @@ export function ListItem({ checked={isChecked} onChange={onCheck} disabled={isChecked} - className="form-checkbox h-4 w-4 lg:h-5 lg:w-5" + className="form-checkbox h-4 w-4 lg:h-5 lg:w-5 cursor-pointer" />
@@ -61,7 +61,7 @@ export function ListItem({
{category} diff --git a/src/views/About.jsx b/src/views/About.jsx index be2e9bb..14fe4d1 100644 --- a/src/views/About.jsx +++ b/src/views/About.jsx @@ -1,17 +1,115 @@ +import { FaGithub, FaShareAlt, FaHome } from 'react-icons/fa'; +import { DeveloperCard } from '../components/DeveloperCard'; +import { NavLink } from 'react-router-dom'; + export function About() { return ( - <> -

This is the About page

-

We want to add following info here:

-
    -
  • introduction to the app - what does it do
  • -
  • how to use the app
  • -
  • info/link to collab lab
  • -
  • github link to the app repo
  • -
  • - info/github links to dev team - optional -
  • -
- +
+
+

About this application

+

+ Shop'n Go is a smart shopping list application that enables users + to level up their shopping experience. Create specialized lists, share + them with your friends, and keep track of your shopping with ease! +

+
+
+

How does it work?

+
    +
  1. Sign in with your Gmail account
  2. +
  3. + Create a List (if you don't already have one), click on an + existing one or manage your lists in{' '} + + Home + +
  4. +
  5. + Inside your list, add a new item and select how soon you will need + to buy it +
  6. +
  7. + Once you have bought your item, check it off and wait to be reminded + when you need it again +
  8. +
  9. + Share your list with friends, family, colleagues or whomever you + wish. Just click on{' '} + + {' '} + Share + +
  10. +
+
+
+

This application was developed by:

+
+ + + + + +
+

+ Get in touch with us, we'd love to hear from you! +

+

+ You can find the repository to this application on GitHub{' '} + + + +

+
+
+

+ Special thanks to our Mentors{' '} + + Chiamaka Umeh + {' '} + and{' '} + + Viviana Yanez{' '} + + and{' '} + + The Collab Lab's + {' '} + Program. Check out their website to learn more about their awesome + work! +

+
+
); } diff --git a/src/views/Layout.jsx b/src/views/Layout.jsx index cbd5b6e..7fb7d84 100644 --- a/src/views/Layout.jsx +++ b/src/views/Layout.jsx @@ -13,7 +13,7 @@ export function Layout() { return ( <>
-
+

@@ -36,7 +36,7 @@ export function Layout() {
-