Files
RJ 6adb3a6979
All checks were successful
PR Checks / lint-and-build (pull_request) Successful in 21s
Build and Deploy Next.js Blog to Production / 🔍 Code Quality Checks (push) Successful in 16s
Build and Deploy Next.js Blog to Production / 🏗️ Build and Push Docker Image (push) Successful in 1m4s
Build and Deploy Next.js Blog to Production / 🚀 Deploy to Production (push) Successful in 55s
📝 update breadcrumbs , nav for mobile and homepage translations
2025-12-05 16:25:56 +02:00

21 lines
372 B
TypeScript

'use client'
import { Breadcrumbs } from '@/components/layout/Breadcrumbs'
import { useTranslations } from 'next-intl'
export default function BlogBreadcrumb() {
const t = useTranslations('Breadcrumbs')
return (
<Breadcrumbs
items={[
{
label: t('blog'),
href: '/blog',
current: true,
},
]}
/>
)
}