diff --git a/apps/portal/src/pages/index.tsx b/apps/portal/src/pages/index.tsx index 0e4c2e91..3831c2d8 100644 --- a/apps/portal/src/pages/index.tsx +++ b/apps/portal/src/pages/index.tsx @@ -1,3 +1,4 @@ +import Head from 'next/head'; import { Button } from '@tih/ui'; import Container from '~/components/shared/Container'; @@ -28,48 +29,58 @@ const features = [ export default function HomePage() { return ( -
- -
-

- Tech Interview Handbook - Portal -

-

- Suite of products to help you get better at technical interviews. -

-
-
-

Products.

-
- {features.map((feature) => ( -
-
-
- {feature.name} + + Tech Interview Handbook Portal + +
+
+
+ +

+ Tech Interview Handbook + Portal +

+

+ Suite of products to help you get better at technical + interviews. +

+
+
+ +
+

Products.

+
+ {features.map((feature) => ( +
+
+
+ {feature.name} +
+

+ {feature.name} +

+
+
+ {feature.description} +
+
-

- {feature.name} -

-
-
- {feature.description} -
-
- ))} -
+ ))} + +
+
- - + + ); }