919364a4dd
- Implemented FooterInfo component to display logo, slogan, and social links. - Created FooterMenuBuilder component for rendering a list of links with a title. - Added FooterMenuBuilderWrapper to encapsulate the layout for menu items.
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import routeFactory from '../routeFactory';
|
|
|
|
export const quickLinks = [
|
|
{
|
|
title: routeFactory.home.title,
|
|
link: routeFactory.home.route(),
|
|
},
|
|
{
|
|
title: routeFactory.products.title,
|
|
link: routeFactory.products.route(),
|
|
},
|
|
{
|
|
title: routeFactory.projects.title,
|
|
link: routeFactory.projects.route(),
|
|
},
|
|
] as any[];
|