diff --git a/apps/portal/src/components/offers/OffersNavigation.ts b/apps/portal/src/components/offers/OffersNavigation.ts
index 428df8c2..c1ae24e1 100644
--- a/apps/portal/src/components/offers/OffersNavigation.ts
+++ b/apps/portal/src/components/offers/OffersNavigation.ts
@@ -1,8 +1,8 @@
import type { ProductNavigationItems } from '~/components/global/ProductNavigation';
const navigation: ProductNavigationItems = [
- { href: '/offers/browse', name: 'Browse' },
- { href: '/offers/submit', name: 'Analyse your offers' },
+ { href: '/offers/browse', name: 'Browse all offers' },
+ { href: '/offers/submit', name: 'Analyze your offers' },
];
const config = {
@@ -10,7 +10,7 @@ const config = {
googleAnalyticsMeasurementID: 'G-DBLZDQ2ZZN',
navigation,
showGlobalNav: false,
- title: 'Offer Profile Repository',
+ title: 'Tech Offers Repo',
titleHref: '/offers',
};
diff --git a/apps/portal/src/components/offers/OffersTitle.tsx b/apps/portal/src/components/offers/OffersTitle.tsx
deleted file mode 100644
index 52798611..00000000
--- a/apps/portal/src/components/offers/OffersTitle.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-export default function OffersTitle() {
- return (
- <>
-
-
- Offer Profile Repository
-
-
-
- Reveal profile stories behind offers
-
-
- Click into offers to view profiles, benchmark your offers and profiles,
- and discuss with the community
-
- >
- );
-}
diff --git a/apps/portal/src/pages/offers/browse.tsx b/apps/portal/src/pages/offers/browse.tsx
index 31a9ab3c..f8204487 100644
--- a/apps/portal/src/pages/offers/browse.tsx
+++ b/apps/portal/src/pages/offers/browse.tsx
@@ -1,6 +1,7 @@
+import Link from 'next/link';
import { useState } from 'react';
+import { Banner } from '@tih/ui';
-import OffersTitle from '~/components/offers/OffersTitle';
import OffersTable from '~/components/offers/table/OffersTable';
import CompaniesTypeahead from '~/components/shared/CompaniesTypeahead';
import JobTitlesTypeahead from '~/components/shared/JobTitlesTypahead';
@@ -11,26 +12,39 @@ export default function OffersHomePage() {
return (
-
-
+
+ ⭐ Check if your offer is competitive by submitting it{' '}
+
+ here
+
+ . ⭐
+
+
+
+
+
+ Tech Offers Repo
+
+
+
+ Find out how good your offer is. Discover how others got their
+ offers.
+
+
-
- Viewing offers for
-
- setjobTitleFilter(value)}
- />
-
- in
-
- setCompanyFilter(value)}
- />
-
+
+ Viewing offers for
+ setjobTitleFilter(value)}
+ />
+ in
+ setCompanyFilter(value)}
+ />
diff --git a/apps/portal/src/pages/offers/index.tsx b/apps/portal/src/pages/offers/index.tsx
index 11218b77..75471156 100644
--- a/apps/portal/src/pages/offers/index.tsx
+++ b/apps/portal/src/pages/offers/index.tsx
@@ -96,7 +96,7 @@ export default function LandingPage() {