diff --git a/apps/portal/src/components/offers/OffersNavigation.tsx b/apps/portal/src/components/offers/OffersNavigation.tsx
index 11bc1856..53e4b4c8 100644
--- a/apps/portal/src/components/offers/OffersNavigation.tsx
+++ b/apps/portal/src/components/offers/OffersNavigation.tsx
@@ -8,7 +8,7 @@ const navigation: ProductNavigationItems = [
const navigationAuthenticated: ProductNavigationItems = [
{ href: '/offers/submit', name: 'Analyze your offers' },
- { href: '/offers/dashboard', name: 'Your dashboard' },
+ { href: '/offers/dashboard', name: 'My dashboard' },
{ href: '/offers/features', name: 'Features' },
{ href: '/offers/about', name: 'About' },
];
diff --git a/apps/portal/src/pages/index.tsx b/apps/portal/src/pages/index.tsx
index a16a0ec8..0e4c2e91 100644
--- a/apps/portal/src/pages/index.tsx
+++ b/apps/portal/src/pages/index.tsx
@@ -12,7 +12,7 @@ const features = [
},
{
description:
- 'Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.',
+ 'Reveal stories behind offers. Help job seekers benchmark and analyse their anonymous offers with more context. Encourage discussions around offer profiles.',
href: '/offers',
img: '/logos/offers-logo.svg',
name: 'Tech Offers',
diff --git a/apps/portal/src/pages/offers/about.tsx b/apps/portal/src/pages/offers/about.tsx
index cb29803e..8b6d35ea 100644
--- a/apps/portal/src/pages/offers/about.tsx
+++ b/apps/portal/src/pages/offers/about.tsx
@@ -1,3 +1,5 @@
+import Head from 'next/head';
+
import Container from '~/components/shared/Container';
const people = [
@@ -29,75 +31,80 @@ const people = [
export default function AboutPage() {
return (
-
-
-
-
-
- About Tech Offers Repo
-
-
- Tech Offers Repo, a project under the series of Tech Interview
- Handbook (TIH), reveals the stories behind offers by focusing on
- the profiles of the offer receivers. It helps job seekers
- benchmark and analyse their anonymous offers with more context and
- encourages discussions around offer profiles.
-
-
- {/* Feedback */}
-
-
- Feedback to Us
-
+ <>
+
+ About us - Tech Offers Repo
+
+
+
+
+
+
+ About Tech Offers Repo
+
+
+ Tech Offers Repo, a project under the series of Tech Interview
+ Handbook (TIH), reveals the stories behind offers by focusing on
+ the profiles of the offer receivers. It helps job seekers
+ benchmark and analyse their anonymous offers with more context
+ and encourages discussions around offer profiles.
+
+
+ {/* Feedback */}
+
+
+ Feedback to Us
+
-
- Thank you for using our platform! Feel free to submit your
- feedback / feature request / bug report
-
- here
-
- .
-
-
-
-
- Meet the Team
-
-
- {people.map((person) => (
-
-
-
-
-
-
-
-
-
{person.name}
-
{person.role}
-
-
-
{person.bio}
+
+ Thank you for using our platform! Feel free to submit your
+ feedback / feature request / bug report
+
+ here
+
+ .
+
+
+
+
+ Meet the Team
+
+
+ {people.map((person) => (
+
+
+
+
+
+
+
+
+
{person.name}
+
{person.role}
+
+
+
{person.bio}
+
-
-
- ))}
-
+
+ ))}
+
+
-
-
-
+
+
+ >
);
}
diff --git a/apps/portal/src/pages/offers/dashboard.tsx b/apps/portal/src/pages/offers/dashboard.tsx
index bb3f5dc8..b397fddc 100644
--- a/apps/portal/src/pages/offers/dashboard.tsx
+++ b/apps/portal/src/pages/offers/dashboard.tsx
@@ -1,3 +1,4 @@
+import Head from 'next/head';
import { useRouter } from 'next/router';
import { signIn, useSession } from 'next-auth/react';
import { useState } from 'react';
@@ -45,53 +46,63 @@ export default function ProfilesDashboard() {
if (userProfiles.length === 0) {
return (
-