Skip to content

Commit 9615bff

Browse files
feat blog: fix for paddings on mobile (#254)
* feat(Blog):fix for clickable link in post details, fix for author details * feat(Blog):refactoring after removing author modal * feat(Blog): fix unified date format * feat(Blog): Fix for click-outside-to-close search, recommended posts are limited to 3 * feat(Blog): selectedAuthorData fixed * feat(Blog): Added description for /blog/[slug] metadata, Added Schema.org JSON‑LD for Article (BlogPosting) and BreadcrumbList , Added <time datetime> tags where blog dates renders * feat(Blog): fix hover social links, fixed duplication not found search * feat(Blog): Added: breadcrumbs to the post details page and updated the BreadcrumbList, logo to the cocial links in User info, Fixed: main container alignment, category navigation in breadcrumbs * feat(Blog): Added: breadcrumbs to the post details page and updated the BreadcrumbList, logo to the cocial links in User info, Fixed: main container alignment, category navigation in breadcrumbs * feat(Blog): Added scroll on the main blog page on filtering by author, fied breadcrumbs category translaion, added category to the recommended cards, fixed search for localisations * feat(Blog): Changed image size on the post details page * feat(Blog): added tests * feat(Blog): fix for big post on the post page, added tests * feat(Blog): resolving comments * feat(Blog): fixed hover for social links icins - dark theme * feat(Blog): bringing the style on the blog page to a single site style * feat(blog): aligning syles * feat(blog): resolving comment from CodeRabbit * feat(blog):fix comment for deployment * feat(Blog): adding pagination * feat(Blog): Addind Text formatting visibility * feat(Blog):adding text formating fix
1 parent 9ade51d commit 9615bff

4 files changed

Lines changed: 103 additions & 45 deletions

File tree

frontend/app/[locale]/blog/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export default async function BlogPage({
8686

8787
return (
8888
<DynamicGridBackground className="bg-gray-50 transition-colors duration-300 dark:bg-transparent py-10">
89-
<main className="relative z-10 mx-auto max-w-7xl px-4 pt-6 pb-12 sm:px-6 lg:px-8">
89+
<main className="relative z-10 mx-auto max-w-7xl pt-6 pb-12">
9090
{!hasAuthorFilter && (
9191
<BlogPageHeader title={t('title')} subtitle={t('subtitle')} />
9292
)}

frontend/components/header/MainSwitcher.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ export function MainSwitcher({
5555
showAdminLink={showAdminLink}
5656
blogCategories={blogCategories}
5757
/>
58-
<main className="mx-auto px-6 min-h-[80vh]">{children}</main>
58+
<main className="mx-auto px-4 sm:px-6 lg:px-8 min-h-[80vh]">
59+
{children}
60+
</main>
5961
</>
6062
);
6163
}

frontend/package-lock.json

Lines changed: 46 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)