aboutsummaryrefslogtreecommitdiff
path: root/app/components
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-04-25 21:04:32 -0400
committerAndrew Lee <andrew@alee14.me>2025-04-25 21:04:32 -0400
commitb50e5415658c42c7102510a01dc66f5080febb9f (patch)
tree0e23f7c6fe9b657ec56125c727cda01570f58a23 /app/components
parentb53a37e8b55c70cb6bd18e10e78820d90c3a78b9 (diff)
downloadalure-website-b50e5415658c42c7102510a01dc66f5080febb9f.tar.gz
alure-website-b50e5415658c42c7102510a01dc66f5080febb9f.tar.bz2
alure-website-b50e5415658c42c7102510a01dc66f5080febb9f.zip
New country; New page; Update packages
Diffstat (limited to 'app/components')
-rw-r--r--app/components/Navbar.js4
-rw-r--r--app/components/PSA.js2
-rw-r--r--app/components/psa.json6
3 files changed, 6 insertions, 6 deletions
diff --git a/app/components/Navbar.js b/app/components/Navbar.js
index 4c172da..3b42990 100644
--- a/app/components/Navbar.js
+++ b/app/components/Navbar.js
@@ -27,12 +27,12 @@ const Navbar = () => {
{[
['Home', '/'],
['Updates', '/updates'],
- // ['Services', '/services'],
+ ['Enterprises', '/enterprises'],
['Travel Advisory', '/travel-advisory'],
['Visas', '/visas'],
['Immigration', '/immigration'],
].map(([title, url]) => (
- <li key="links">
+ <li key={title}>
<Link href={url} className="transition duration-150 ease-out hover:ease-in block py-2 pl-3 pr-4 rounded md:border-0 md:p-0 text-white md:hover:text-blue-500 hover:bg-gray-700 hover:text-white md:hover:bg-transparent" onClick={() => setNavbar(!navbar)}>
{title}
</Link>
diff --git a/app/components/PSA.js b/app/components/PSA.js
index f5193a8..da5f35b 100644
--- a/app/components/PSA.js
+++ b/app/components/PSA.js
@@ -1,4 +1,4 @@
-import psaMessage from './psa.json' assert { type: 'json' };
+import psaMessage from './psa.json' with { type: 'json' };
import Link from "next/link";
const PSA = () => {
diff --git a/app/components/psa.json b/app/components/psa.json
index 08fac73..691070b 100644
--- a/app/components/psa.json
+++ b/app/components/psa.json
@@ -1,5 +1,5 @@
{
- "important": 0,
- "announcement": "Want to become an Alure Regions resident? Check out this post for more information.",
- "link": "/updates/announcing-immigration"
+ "important": 1,
+ "announcement": "Internal businesses now require to register with the government.",
+ "link": "/updates/enterprises-registering"
}