Merge remote-tracking branch 'origin/main' into navbar

This commit is contained in:
zahravaziri
2025-06-05 14:25:22 +03:30
27 changed files with 484 additions and 80 deletions
@@ -6,8 +6,8 @@ export const quickLinks = [
link: routeFactory.home.route(),
},
{
title: routeFactory.products.title,
link: routeFactory.products.route(),
title: routeFactory.productCategories.title,
link: routeFactory.productCategories.route(),
},
{
title: routeFactory.projects.title,
+5 -1
View File
@@ -5,9 +5,13 @@ export default {
title: t('pages_home_title'),
route: () => '/',
},
productCategories: {
title: t('pages_product_categories_title'),
route: () => '/product-categories',
},
products: {
title: t('pages_products_title'),
route: () => '/products',
route: (productId: string) => `/product-categories/${productId}`,
},
projects: {
title: t('pages_projects_title'),
+3
View File
@@ -9,6 +9,8 @@ import homeProductBack from './home_product_back.jpeg';
import whatWeDoImage from './what-we-do-image.png';
import blogImg_1 from './blog_img_1.jpeg'
import projectImg_1 from './project_img_1.jpeg'
import product1 from './product1.png';
export default {
homeBanner,
logo,
@@ -21,4 +23,5 @@ export default {
aboutImg_2,
homeProductBack,
whatWeDoImage,
product1,
};
Binary file not shown.

After

Width:  |  Height:  |  Size: 360 KiB