From 933b444c2a144de07bc790d4a8aeee3e706c3130 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:31:15 -0700
Subject: [PATCH 14/21] Add work-in-progress page
---
src/app/wip/page.js | 51 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
create mode 100644 src/app/wip/page.js
diff --git a/src/app/wip/page.js b/src/app/wip/page.js
new file mode 100644
index 0000000..d8ce3dd
--- /dev/null
+++ b/src/app/wip/page.js
@@ -0,0 +1,51 @@
+/**
+ * v0 by Vercel.
+ * @see https://v0.dev/t/fqAzrUdiAN9
+ * Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app
+ */
+'use client';
+
+import Navbar from '@/components/ui/navbar';
+import Footer from '@/components/ui/footer';
+
+export default function Component() {
+ const links = [
+ { text: 'Home', url: '/' },
+ { text: 'About', url: '/wip' },
+ { text: 'Login / Signup', url: '/api/auth/login' },
+ ];
+ return (
+
+
+
+
+
+ Page Under Construction
+
+
+ This page is currently being worked on and will be available soon.
+ Please check back later.
+
+
+
+
+ );
+}
+
+function WrenchIcon(props) {
+ return (
+
+
+
+ );
+}
From 285ea24ea6b9e4deb48f5385b13dc3e0895e440a Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:32:10 -0700
Subject: [PATCH 15/21] Update links to WIP page
---
src/app/pricing/page.js | 2 +-
src/components/ui/footer.jsx | 30 +++++++++++++++---------------
2 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js
index ece03a4..1fcfb34 100644
--- a/src/app/pricing/page.js
+++ b/src/app/pricing/page.js
@@ -12,7 +12,7 @@ import Footer from '@/components/ui/footer';
export default function Component() {
const links = [
{ text: 'Home', url: '/' },
- { text: 'About', url: '/about' },
+ { text: 'About', url: '/wip' },
{ text: 'Login / Signup', url: '/api/auth/login' },
];
diff --git a/src/components/ui/footer.jsx b/src/components/ui/footer.jsx
index 548f39d..ba969b8 100644
--- a/src/components/ui/footer.jsx
+++ b/src/components/ui/footer.jsx
@@ -7,30 +7,30 @@ function Footer() {
Company
- About Us
- Our Team
- Careers
- News
+ About Us
+ Our Team
+ Careers
+ News
Job Sites
- Indigenous
- New Comers
- People with Disabilities
- Vulnerable Youth
- Asylum-Refugees
+ Indigenous
+ New Comers
+ People with Disabilities
+ Vulnerable Youth
+ Asylum-Refugees
Legal
- Privacy Policy
- Terms of Service
- Cookie Policy
+ Privacy Policy
+ Terms of Service
+ Cookie Policy
Contact
- Support
- Sales
- Partnerships
+ Support
+ Sales
+ Partnerships
From a46c55085c232a815a0b34f8f675f37e79f38709 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:33:38 -0700
Subject: [PATCH 16/21] Update links to wip
---
src/app/page.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/page.js b/src/app/page.js
index 02425d6..2af59b6 100644
--- a/src/app/page.js
+++ b/src/app/page.js
@@ -31,7 +31,7 @@ export default function Component() {
const links = [
{ text: 'Pricing', url: '/pricing' },
- { text: 'About', url: '/about' },
+ { text: 'About', url: '/wip' },
{ text: 'Login / Signup', url: '/api/auth/login' },
];
From e2cde9d6befd582020e1adc50f6d55e660d82920 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:34:22 -0700
Subject: [PATCH 17/21] Add pricing to wip navbar
---
src/app/wip/page.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/app/wip/page.js b/src/app/wip/page.js
index d8ce3dd..44ec2e3 100644
--- a/src/app/wip/page.js
+++ b/src/app/wip/page.js
@@ -11,6 +11,7 @@ import Footer from '@/components/ui/footer';
export default function Component() {
const links = [
{ text: 'Home', url: '/' },
+ { text: 'Pricing', url: '/pricing' },
{ text: 'About', url: '/wip' },
{ text: 'Login / Signup', url: '/api/auth/login' },
];
From a29459bfc8be37dd5a2a9ad98e1057e79844c599 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:40:22 -0700
Subject: [PATCH 18/21] Adjust footer spacing
---
src/components/ui/footer.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/ui/footer.jsx b/src/components/ui/footer.jsx
index ba969b8..d4a37c8 100644
--- a/src/components/ui/footer.jsx
+++ b/src/components/ui/footer.jsx
@@ -4,7 +4,7 @@ import Link from 'next/link';
function Footer() {
return (
-
+
Company
About Us
From 647d1aabff4c07a5e6bf3d438695f0d45e385505 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:41:58 -0700
Subject: [PATCH 19/21] Update key features
---
src/app/page.js | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/src/app/page.js b/src/app/page.js
index 2af59b6..c4b8cc6 100644
--- a/src/app/page.js
+++ b/src/app/page.js
@@ -81,29 +81,25 @@ export default function Component() {
Easy Job Posting
- Post your job openings in minutes and reach a wide pool of
- qualified candidates.
+ Create and publish job listings in minutes.
-
Candidate Management
+
Flexibility
- Easily track and manage your applicants with our intuitive
- dashboard.
+ Customize your job postings to attract the right candidates.
-
Powerful Analytics
+
Simple Pricing
- Get insights into your hiring process with our comprehensive
- analytics.
+ No hassle. No hidden fees. Pay only for what you use.
-
Seamless Collaboration
+
Cross Posting
- Invite your team to collaborate on the hiring process and make
- better decisions together.
+ Advertise your opportunity across multiple job boards.
From e32c482d8e0c80ef7c466e396df99b2122b22936 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:44:37 -0700
Subject: [PATCH 20/21] Update footer links to jobsites
---
src/components/ui/footer.jsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/ui/footer.jsx b/src/components/ui/footer.jsx
index d4a37c8..ab5ccf3 100644
--- a/src/components/ui/footer.jsx
+++ b/src/components/ui/footer.jsx
@@ -14,8 +14,8 @@ function Footer() {
Job Sites
- Indigenous
- New Comers
+ Indigenous
+ New Comers
People with Disabilities
Vulnerable Youth
Asylum-Refugees
From 2e7aa5320cd2483d0caab853cdc2c878e254a1b4 Mon Sep 17 00:00:00 2001
From: shye <113232835+justshye@users.noreply.github.com>
Date: Tue, 21 May 2024 20:45:58 -0700
Subject: [PATCH 21/21] Update link in admin-panel
---
src/app/admin-panel/home/page.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/admin-panel/home/page.js b/src/app/admin-panel/home/page.js
index 138f416..cee8ad6 100644
--- a/src/app/admin-panel/home/page.js
+++ b/src/app/admin-panel/home/page.js
@@ -17,7 +17,7 @@ export default function Home() {
const links = [
{ text: 'Pricing', url: '/pricing' },
- { text: 'About', url: '/about' },
+ { text: 'About', url: '/wip' },
{ text: 'Logout', url: '/api/auth/logout' },
];