mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-31 14:11:12 +00:00
Set messaging tech stack mobile bottom padding to keep the border-to-border spacing consistent before related articles.
12 lines
352 B
TypeScript
12 lines
352 B
TypeScript
import type { Language } from '@repo/content/schemas'
|
|
|
|
import TechStackExplorer from '@/components/sections/shared/tech-stack-explorer'
|
|
|
|
export default function MessagingTechStack({ locale }: { locale: Language }) {
|
|
return (
|
|
<div className="md:mb-25">
|
|
<TechStackExplorer locale={locale} contentClassName="pb-18 md:pb-6" />
|
|
</div>
|
|
)
|
|
}
|