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/components/offers/offersSubmission/OffersProfileSave.tsx b/apps/portal/src/components/offers/offersSubmission/OffersProfileSave.tsx
index 513d0de7..4a01b352 100644
--- a/apps/portal/src/components/offers/offersSubmission/OffersProfileSave.tsx
+++ b/apps/portal/src/components/offers/offersSubmission/OffersProfileSave.tsx
@@ -41,7 +41,7 @@ export default function OffersProfileSave({
{ profileId, userId: session?.user?.id },
]);
showToast({
- title: `Saved to your dashboard!`,
+ title: `Saved to my dashboard!`,
variant: 'success',
});
},
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 (
-