50 lines
967 B
TypeScript
50 lines
967 B
TypeScript
import FBook from "../assets/icons/facebook.svg";
|
|
import Twitter from "../assets/icons/twitter.svg";
|
|
import Instagram from "../assets/icons/instagram.svg";
|
|
|
|
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: "",
|
|
},
|
|
];
|
|
|
|
export const socialsIcons = [
|
|
{ name: "facebook", image: FBook },
|
|
{ name: "twitter", image: Twitter },
|
|
{ name: "instagram", image: Instagram },
|
|
];
|