refactor: enhance link active state handling in Navbar and HamburgerMenu components
This commit is contained in:
@@ -72,7 +72,7 @@ export default async function ProductPage({
|
||||
title={productCategory?.title || t('page_products_default_title')}
|
||||
imageSrc={images.homeProductBack.src}
|
||||
/>
|
||||
<div className="container-fluid mx-auto my-24">
|
||||
<div className="container-fluid mx-auto my-12 md:my-24">
|
||||
<Breadcrumb items={breadcrumbItems} />
|
||||
<ProductCategoryCardInProducts
|
||||
productCategory={productCategory}
|
||||
|
||||
@@ -33,7 +33,7 @@ export default async function ProductsPage({
|
||||
title={t('pages_product_categories_title')}
|
||||
imageSrc={images.aboutBanner.src}
|
||||
/>
|
||||
<div className="container-fluid mx-auto my-24">
|
||||
<div className="container-fluid mx-auto my-12 md:my-24">
|
||||
<div className="grid w-full grid-cols-1 gap-4 sm:grid-cols-2 xl:grid-cols-4">
|
||||
{productCategories.map((category) => (
|
||||
<ProductsCategoryCard key={category.id} {...category} />
|
||||
|
||||
@@ -32,7 +32,7 @@ export default async function ProjectsPage({
|
||||
title={t('pages_projects_title')}
|
||||
imageSrc={images.aboutBanner.src}
|
||||
/>
|
||||
<div className="container-fluid mx-auto my-24">
|
||||
<div className="container-fluid mx-auto my-12 md:my-24">
|
||||
<ProjectsGridView />
|
||||
</div>
|
||||
</main>
|
||||
|
||||
Reference in New Issue
Block a user