mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2026-04-05 11:59:05 +08:00
[question][ui] about page (#534)
This commit is contained in:
BIN
apps/portal/public/team/hongpo.jpg
Normal file
BIN
apps/portal/public/team/hongpo.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
BIN
apps/portal/public/team/jeffsieu.png
Normal file
BIN
apps/portal/public/team/jeffsieu.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
BIN
apps/portal/public/team/weilin.jpg
Normal file
BIN
apps/portal/public/team/weilin.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 326 KiB |
BIN
apps/portal/public/team/zhiying.png
Normal file
BIN
apps/portal/public/team/zhiying.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 MiB |
@@ -20,7 +20,7 @@ const features = [
|
||||
},
|
||||
{
|
||||
description:
|
||||
'Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.',
|
||||
'A community driven interview question bank. Help job seekers prepare for their interviews with real questions from real companies.',
|
||||
href: '/questions',
|
||||
img: '/logos/bank-logo.png',
|
||||
name: 'Question Bank',
|
||||
|
||||
@@ -1,86 +1,110 @@
|
||||
import Head from 'next/head';
|
||||
|
||||
import Container from '~/components/shared/Container';
|
||||
|
||||
const people = [
|
||||
{
|
||||
bio: '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.',
|
||||
imageUrl: '/team/TODO.jpg',
|
||||
name: 'Jeff Sieu',
|
||||
role: 'Role TODO',
|
||||
},
|
||||
{
|
||||
bio: '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.',
|
||||
imageUrl: '/team/TODO.jpg',
|
||||
name: 'Koh Hong Po',
|
||||
role: 'Role TODO',
|
||||
},
|
||||
{
|
||||
bio: '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.',
|
||||
imageUrl: '/team/TODO.jpg',
|
||||
bio: 'Dsyfunctional human who cannot survive without 10 hours of sleep.',
|
||||
imageUrl: '/team/weilin.jpg',
|
||||
name: 'Ren Weilin',
|
||||
role: 'Role TODO',
|
||||
role: 'Front End Engineer',
|
||||
},
|
||||
{
|
||||
bio: '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.',
|
||||
imageUrl: '/team/TODO.jpg',
|
||||
bio: 'Good morning dailou.',
|
||||
imageUrl: '/team/hongpo.jpg',
|
||||
name: 'Koh Hong Po',
|
||||
role: 'Back End Engineer',
|
||||
},
|
||||
{
|
||||
bio: 'Why spend 1 hour solving the problem when you can spend 10 hours doing abstraction, optimisation and automation (in order of increasing rates of success)?',
|
||||
imageUrl: '/team/jeffsieu.png',
|
||||
name: 'Jeff Sieu',
|
||||
role: 'Front End Engineer/Karate Gold medalist',
|
||||
},
|
||||
{
|
||||
bio: 'Exicited to jump into anything.',
|
||||
imageUrl: '/team/zhiying.png',
|
||||
name: 'Tang Zhiying',
|
||||
role: 'Role TODO',
|
||||
role: 'Designer',
|
||||
},
|
||||
];
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<div className="lg:py-18 bg-white py-12">
|
||||
<Container variant="xs">
|
||||
<div className="space-y-12">
|
||||
<div className="space-y-6">
|
||||
<h1 className="text-3xl font-bold tracking-tight sm:text-4xl">
|
||||
About Question Bank
|
||||
</h1>
|
||||
<p className="text-lg text-slate-500">
|
||||
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.
|
||||
</p>
|
||||
</div>
|
||||
<div className="space-y-6">
|
||||
<h2 className="text-2xl font-bold tracking-tight sm:text-3xl">
|
||||
Meet the Team
|
||||
</h2>
|
||||
<ul
|
||||
className="grid grid-cols-2 items-start gap-8 md:grid-cols-1 md:items-start md:space-y-0"
|
||||
role="list">
|
||||
{people.map((person) => (
|
||||
<li key={person.name}>
|
||||
<div className="space-y-4 sm:grid sm:grid-cols-4 sm:gap-6 sm:space-y-0 lg:gap-8">
|
||||
<div className="aspect-w-2 aspect-h-2 h-0">
|
||||
<img
|
||||
alt={person.name}
|
||||
className="rounded-lg object-cover shadow-lg"
|
||||
src={person.imageUrl}
|
||||
/>
|
||||
</div>
|
||||
<div className="sm:col-span-3">
|
||||
<div className="space-y-4">
|
||||
<div className="text-md space-y-1 font-medium leading-6 sm:text-lg">
|
||||
<h3>{person.name}</h3>
|
||||
<p className="text-primary-600">{person.role}</p>
|
||||
</div>
|
||||
<div className="text-sm sm:text-lg">
|
||||
<p className="text-slate-500">{person.bio}</p>
|
||||
<>
|
||||
<Head>
|
||||
<title>About us - Question Bank</title>
|
||||
</Head>
|
||||
<div className="lg:py-18 bg-white py-12">
|
||||
<Container variant="xs">
|
||||
<div className="space-y-12">
|
||||
<div className="space-y-6">
|
||||
<h1 className="text-3xl font-bold tracking-tight sm:text-4xl">
|
||||
About Question Bank
|
||||
</h1>
|
||||
<p className="text-lg text-slate-500">
|
||||
Question Bank is for the community to collate and share real
|
||||
interview questions from companies. We hope to provide a
|
||||
platform for everyone to be able to prepare themselves well for
|
||||
their upcoming interviews, and head into their assessment with
|
||||
confidence about the questions they will be facing.
|
||||
</p>
|
||||
</div>
|
||||
{/* Feedback */}
|
||||
<div className="space-y-6">
|
||||
<h2 className="text-2xl font-bold tracking-tight sm:text-3xl">
|
||||
Feedback to Us
|
||||
</h2>
|
||||
|
||||
<p className="text-lg text-slate-500">
|
||||
Thank you for using our platform! Feel free to submit your
|
||||
feedback / feature request / bug report
|
||||
<a
|
||||
className="text-primary-600 hover:text-primary-500 ml-1"
|
||||
href="https://forms.gle/BPbhrcXWcFvCbvvv8"
|
||||
rel="noreferrer"
|
||||
target="_blank">
|
||||
here
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
</div>
|
||||
<div className="space-y-6">
|
||||
<h2 className="text-2xl font-bold tracking-tight sm:text-3xl">
|
||||
Meet the Team
|
||||
</h2>
|
||||
<ul
|
||||
className="grid grid-cols-2 items-start gap-8 md:grid-cols-1 md:items-start md:space-y-0"
|
||||
role="list">
|
||||
{people.map((person) => (
|
||||
<li key={person.name}>
|
||||
<div className="space-y-4 sm:grid sm:grid-cols-4 sm:gap-6 sm:space-y-0 lg:gap-8">
|
||||
<div className="aspect-w-2 aspect-h-2 h-0">
|
||||
<img
|
||||
alt={person.name}
|
||||
className="rounded-lg object-cover shadow-lg"
|
||||
src={person.imageUrl}
|
||||
/>
|
||||
</div>
|
||||
<div className="sm:col-span-3">
|
||||
<div className="space-y-4">
|
||||
<div className="text-md space-y-1 font-medium leading-6 sm:text-lg">
|
||||
<h3>{person.name}</h3>
|
||||
<p className="text-primary-600">{person.role}</p>
|
||||
</div>
|
||||
<div className="text-sm sm:text-lg">
|
||||
<p className="text-slate-500">{person.bio}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Container>
|
||||
</div>
|
||||
</Container>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user