parent
e840b3bf08
commit
c10aa15347
Before Width: | Height: | Size: 351 KiB After Width: | Height: | Size: 351 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
@ -1,13 +1,75 @@
|
|||||||
|
import { Button } from '@tih/ui';
|
||||||
|
|
||||||
|
import Container from '~/components/shared/Container';
|
||||||
|
|
||||||
|
const features = [
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.',
|
||||||
|
href: '/resumes',
|
||||||
|
img: '/logos/resumes-logo.svg',
|
||||||
|
name: 'Resume Review',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.',
|
||||||
|
href: '/offers',
|
||||||
|
img: '/logos/offers-logo.svg',
|
||||||
|
name: 'Tech Offers',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.',
|
||||||
|
href: '/questions',
|
||||||
|
img: '/logos/bank-logo.png',
|
||||||
|
name: 'Question Bank',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
<main className="flex-1 overflow-y-auto">
|
<div className="bg-white py-12">
|
||||||
<div className="flex h-full items-center justify-center">
|
<Container className="space-y-24">
|
||||||
<div className="space-y-4">
|
<div className="text-center">
|
||||||
<h1 className="text-primary-600 text-center text-4xl font-bold">
|
<h1 className="text-4xl font-bold tracking-tight text-slate-900 sm:text-5xl md:text-6xl">
|
||||||
Tech Interview Handbook Portal
|
<span className="block">Tech Interview Handbook</span>
|
||||||
|
<span className="text-primary-600 block">Portal</span>
|
||||||
</h1>
|
</h1>
|
||||||
|
<p className="mx-auto mt-3 max-w-md text-base text-slate-500 sm:text-lg md:mt-5 md:max-w-3xl md:text-xl">
|
||||||
|
Suite of products to help you get better at technical interviews.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div>
|
||||||
</main>
|
<h2 className="sr-only">Products.</h2>
|
||||||
|
<dl className="space-y-10 lg:grid lg:grid-cols-3 lg:gap-12 lg:space-y-0">
|
||||||
|
{features.map((feature) => (
|
||||||
|
<div key={feature.name}>
|
||||||
|
<dt>
|
||||||
|
<div className="flex justify-center">
|
||||||
|
<img
|
||||||
|
alt={feature.name}
|
||||||
|
className="h-48"
|
||||||
|
src={feature.img}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p className="mt-8 text-xl font-medium leading-6 text-slate-900">
|
||||||
|
{feature.name}
|
||||||
|
</p>
|
||||||
|
</dt>
|
||||||
|
<dd className="mt-2 text-base text-slate-500">
|
||||||
|
{feature.description}
|
||||||
|
</dd>
|
||||||
|
<Button
|
||||||
|
className="mt-4"
|
||||||
|
href={feature.href}
|
||||||
|
label="Try it out"
|
||||||
|
variant="tertiary"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
</Container>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue