Added routes and navbar

This commit was merged in pull request #2.
This commit is contained in:
Ebube
2024-03-05 15:57:26 +01:00
parent c43a21794f
commit 4e60c4b4c7
23 changed files with 2125 additions and 214 deletions
+39
View File
@@ -0,0 +1,39 @@
export const top_header_data = [
{ id: 1, name: "HOME" },
{ id: 2, name: "PERSONAL" },
{ id: 3, name: "BUSINESS" },
{ id: 4, name: "CORPORATE" },
];
export const lowerMenuItems = [
{
id: 1,
name: "PERSONAL BANKING",
linkPath: "/personal-banking",
},
{
id: 2,
name: "BUSINESS BANKING",
linkPath: "/business-banking",
},
{
id: 3,
name: "CORPORATE BANKING",
linkPath: "/corporate-banking",
},
{
id: 4,
name: "GROUP & SUBSIDIARIES",
linkPath: "",
},
{
id: 5,
name: "ABOUT US",
linkPath: "/about-us",
},
{
id: 6,
name: "MY BANK AND I",
linkPath: "",
},
];