diff --git a/apps/portal/public/team/ai-ling.jpg b/apps/portal/public/team/ai-ling.jpg new file mode 100644 index 00000000..d74397d2 Binary files /dev/null and b/apps/portal/public/team/ai-ling.jpg differ diff --git a/apps/portal/public/team/bryann.jpg b/apps/portal/public/team/bryann.jpg new file mode 100644 index 00000000..2cdad4d1 Binary files /dev/null and b/apps/portal/public/team/bryann.jpg differ diff --git a/apps/portal/public/team/stuart.jpg b/apps/portal/public/team/stuart.jpg new file mode 100644 index 00000000..935436e0 Binary files /dev/null and b/apps/portal/public/team/stuart.jpg differ diff --git a/apps/portal/public/team/ziqing.jpg b/apps/portal/public/team/ziqing.jpg new file mode 100644 index 00000000..3c75db43 Binary files /dev/null and b/apps/portal/public/team/ziqing.jpg differ diff --git a/apps/portal/src/components/offers/OffersNavigation.tsx b/apps/portal/src/components/offers/OffersNavigation.tsx index 315bac9f..cf4b8e1f 100644 --- a/apps/portal/src/components/offers/OffersNavigation.tsx +++ b/apps/portal/src/components/offers/OffersNavigation.tsx @@ -3,12 +3,14 @@ import type { ProductNavigationItems } from '~/components/global/ProductNavigati const navigation: ProductNavigationItems = [ { href: '/offers/submit', name: 'Analyze your offers' }, { href: '/offers/features', name: 'Features' }, + { href: '/offers/about', name: 'About' }, ]; const navigationAuthenticated: ProductNavigationItems = [ { href: '/offers/submit', name: 'Analyze your offers' }, { href: '/offers/dashboard', name: 'Your dashboard' }, { href: '/offers/features', name: 'Features' }, + { href: '/offers/about', name: 'About' }, ]; const config = { diff --git a/apps/portal/src/pages/offers/about.tsx b/apps/portal/src/pages/offers/about.tsx new file mode 100644 index 00000000..57ad3b77 --- /dev/null +++ b/apps/portal/src/pages/offers/about.tsx @@ -0,0 +1,86 @@ +import Container from '~/components/shared/Container'; + +const people = [ + { + bio: 'I like to play games so I treat life like a game.', + imageUrl: '/team/bryann.jpg', + name: 'Bryann Yeap', + role: 'Back End Engineer', + }, + { + bio: 'I am always up for sushi.', + imageUrl: '/team/ai-ling.jpg', + name: 'Hong Ai Ling', + role: 'Back End Engineer', + }, + { + bio: 'I love to watch football and code.', + imageUrl: '/team/stuart.jpg', + name: 'Stuart Long', + role: 'Front End Engineer', + }, + { + bio: 'Ziqing is a human who thrives under pressure, coffee and cat. In her own time, she likes playing the flute, building fun stuff with friends and watching animes.', + imageUrl: '/team/ziqing.jpg', + name: 'Zhang Ziqing', + role: 'Front End Engineer', + }, +]; + +export default function AboutPage() { + return ( +
+ +
+
+

+ About Tech Offers Repo +

+

+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do + eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut + enim ad minim veniam, quis nostrud exercitation ullamco laboris + nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in + reprehenderit in voluptate velit esse cillum dolore eu fugiat + nulla pariatur. Excepteur sint occaecat cupidatat non proident, + sunt in culpa qui officia deserunt mollit anim id est laborum. +

+
+
+

+ Meet the Team +

+
    + {people.map((person) => ( +
  • +
    +
    + +
    +
    +
    +
    +

    {person.name}

    +

    {person.role}

    +
    +
    +

    {person.bio}

    +
    +
    +
    +
    +
  • + ))} +
+
+
+
+
+ ); +}