feat: add footer components including FooterInfo, FooterMenuBuilder, and FooterMenuBuilderWrapper

- 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.
This commit is contained in:
2025-06-02 18:06:15 +03:30
parent 86dc740dfd
commit 919364a4dd
15 changed files with 242 additions and 16 deletions
@@ -1,7 +1,16 @@
import { appConstants } from '..';
import routeFactory from '../routeFactory';
export const quickLinks = [
{
title: appConstants.routeFactory.home.title,
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[];