From 9a76b54c0e23a3642067b1e1be3a643e34b37faa Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Sat, 18 May 2024 05:03:05 -0700 Subject: [PATCH 01/21] Add bare v0 template --- src/app/pricing/page.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/app/pricing/page.js diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js new file mode 100644 index 0000000..7bbacc2 --- /dev/null +++ b/src/app/pricing/page.js @@ -0,0 +1,40 @@ +/** + * v0 by Vercel. + * @see https://v0.dev/t/XhNYwJIUqC2 + * Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app + */ +import { Button } from '@/components/ui/button'; + +export default function Component() { + return ( +
+
+
+
+

+ Simple Pricing +

+

+ Get started with our basic plan. +

+
+
+
+
+

Starter

+

+ Perfect for individuals and small teams. +

+
+
+ $9 + /mo +
+ +
+
+
+
+
+ ); +} From 1687efa4c39d88a2cde274bcbd567457d78a22fc Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Sat, 18 May 2024 05:04:21 -0700 Subject: [PATCH 02/21] Remove dark mode elements --- src/app/pricing/page.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index 7bbacc2..b1f77e8 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -14,21 +14,21 @@ export default function Component() {

Simple Pricing

-

+

Get started with our basic plan.

-
+

Starter

-

+

Perfect for individuals and small teams.

$9 - /mo + /mo
From 7b8ccc8854010a94e2d90ffcad234c2e045fb363 Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Sat, 18 May 2024 05:06:19 -0700 Subject: [PATCH 03/21] Change wording of price ad --- src/app/pricing/page.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index b1f77e8..57da2d1 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -15,20 +15,20 @@ export default function Component() { Simple Pricing

- Get started with our basic plan. + Get started with our simple pricing. No hidden fees.

-

Starter

+

6 months

- Perfect for individuals and small teams. + Advertise your opportunity across multiple sites

- $9 - /mo + $10 + /position
From 3423d47e8aadd8a83c574019874984210c47b167 Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Sat, 18 May 2024 05:08:43 -0700 Subject: [PATCH 04/21] Add login/signup to home navbar --- src/app/page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.js b/src/app/page.js index 8f385d6..b92acff 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -32,6 +32,7 @@ export default function Component() { const links = [ { text: 'Pricing', url: '/pricing' }, { text: 'About', url: '/about' }, + { text: 'Login / Signup', url: '/api/auth/login' }, ]; return ( From e17dad745d688e575dc6cba0a8e3a290651c570a Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Sat, 18 May 2024 05:14:14 -0700 Subject: [PATCH 05/21] Add border to navbar and remove from pages --- src/app/admin-panel/home/page.js | 2 +- src/app/page.js | 2 +- src/components/ui/navbar.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/admin-panel/home/page.js b/src/app/admin-panel/home/page.js index bd55b31..138f416 100644 --- a/src/app/admin-panel/home/page.js +++ b/src/app/admin-panel/home/page.js @@ -125,7 +125,7 @@ export default function Home() { return (
-
+

My Job Postings diff --git a/src/app/page.js b/src/app/page.js index b92acff..02425d6 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -39,7 +39,7 @@ export default function Component() {
-
+
diff --git a/src/components/ui/navbar.jsx b/src/components/ui/navbar.jsx index 282d8b0..20cabc1 100644 --- a/src/components/ui/navbar.jsx +++ b/src/components/ui/navbar.jsx @@ -3,7 +3,7 @@ import Link from 'next/link'; function Navbar({ links }) { return ( -
+
Job Posting Site From e1749d8456ea813fd213720fdf5e5f095637526d Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Sat, 18 May 2024 05:33:14 -0700 Subject: [PATCH 06/21] Add navbar and center ad --- src/app/pricing/page.js | 56 ++++++++++++++++++++++++----------------- 1 file changed, 33 insertions(+), 23 deletions(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index 57da2d1..8bed645 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -4,33 +4,43 @@ * Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app */ import { Button } from '@/components/ui/button'; +import Navbar from '@/components/ui/navbar'; export default function Component() { + const links = [ + { text: 'Home', url: '/' }, + { text: 'About', url: '/about' }, + { text: 'Login / Signup', url: '/api/auth/login' }, + ]; + return ( -
-
-
-
-

- Simple Pricing -

-

- Get started with our simple pricing. No hidden fees. -

-
-
-
-
-

6 months

-

- Advertise your opportunity across multiple sites -

-
-
- $10 - /position +
+ +
+
+
+
+

+ Simple Pricing +

+

+ Get started with our simple pricing. No hidden fees. +

+
+
+
+
+

6 months

+

+ Advertise your opportunity across multiple sites +

+
+
+ $10 + /position +
+
-
From 2b10c579532f202553098f087e9e1a30da7fb20f Mon Sep 17 00:00:00 2001 From: shye Date: Sat, 18 May 2024 06:09:35 -0700 Subject: [PATCH 07/21] Replace Button with Link to payment --- src/app/pricing/page.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index 8bed645..617fa59 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -3,7 +3,9 @@ * @see https://v0.dev/t/XhNYwJIUqC2 * Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app */ -import { Button } from '@/components/ui/button'; +'use client'; + +import Link from 'next/link'; import Navbar from '@/components/ui/navbar'; export default function Component() { @@ -39,7 +41,11 @@ export default function Component() { $10 /position
- + + Get Started +
From 66638508bd3c8858d0cc2e95d7eebe4f425c3974 Mon Sep 17 00:00:00 2001 From: shye Date: Sat, 18 May 2024 06:11:55 -0700 Subject: [PATCH 08/21] Add footer to pricing page --- src/app/pricing/page.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index 617fa59..b20ff4d 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -7,6 +7,7 @@ import Link from 'next/link'; import Navbar from '@/components/ui/navbar'; +import Footer from '@/components/ui/footer'; export default function Component() { const links = [ @@ -18,7 +19,7 @@ export default function Component() { return (
-
+
@@ -51,6 +52,7 @@ export default function Component() {
+
); } From 68ad28c69e5b5a6633f898b99acb4536777a913f Mon Sep 17 00:00:00 2001 From: shye Date: Sat, 18 May 2024 06:14:13 -0700 Subject: [PATCH 09/21] Make briefcase icon link to home --- src/components/ui/navbar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/navbar.jsx b/src/components/ui/navbar.jsx index 20cabc1..27b9ee4 100644 --- a/src/components/ui/navbar.jsx +++ b/src/components/ui/navbar.jsx @@ -4,7 +4,7 @@ import Link from 'next/link'; function Navbar({ links }) { return (
- + Job Posting Site From 389fd00ab6442036d76d46fc578a21183cd45e7e Mon Sep 17 00:00:00 2001 From: shye Date: Sat, 18 May 2024 06:18:30 -0700 Subject: [PATCH 10/21] Simplify slogan --- src/app/pricing/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index b20ff4d..e99e17b 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -27,7 +27,7 @@ export default function Component() { Simple Pricing

- Get started with our simple pricing. No hidden fees. + Prices made simple. No hidden fees.

From d220465e4ea7d08daf997643c536c33c6c73b0fd Mon Sep 17 00:00:00 2001 From: shye Date: Sat, 18 May 2024 06:19:09 -0700 Subject: [PATCH 11/21] Change to a nicer slogan --- src/app/pricing/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index e99e17b..684bf34 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -27,7 +27,7 @@ export default function Component() { Simple Pricing

- Prices made simple. No hidden fees. + No hassle. No hidden fees.

From e8c333ca19cbdb1c9c7d768312d0561eba2d5fb1 Mon Sep 17 00:00:00 2001 From: shye Date: Sat, 18 May 2024 06:29:31 -0700 Subject: [PATCH 12/21] Change title of homepage --- src/app/layout.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.js b/src/app/layout.js index 269946c..01dd3cf 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -5,8 +5,9 @@ import { UserProvider } from '@auth0/nextjs-auth0/client'; // const inter = Inter({ subsets: ['latin'] }); export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'JobPanel Home', + description: + 'Portal for employers to post job listings and find the perfect candidate for their business.', }; export default function RootLayout({ children }) { From 9ca5a8a63c5b654f9bcbdf592ab2dfa7e86a02e6 Mon Sep 17 00:00:00 2001 From: shye <113232835+justshye@users.noreply.github.com> Date: Tue, 21 May 2024 20:26:59 -0700 Subject: [PATCH 13/21] Center content --- src/app/pricing/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pricing/page.js b/src/app/pricing/page.js index 684bf34..ece03a4 100644 --- a/src/app/pricing/page.js +++ b/src/app/pricing/page.js @@ -19,7 +19,7 @@ export default function Component() { return (
-
+
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 (