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
21 lines
372 B
TypeScript
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,
|
|
},
|
|
]}
|
|
/>
|
|
)
|
|
}
|