Implemented multi-language support for the application: - Added @nuxtjs/i18n plugin configuration - Created locale files for English (en-US) and Chinese (zh-CN) - Updated components to use translation keys - Added language switcher in header - Configured VSCode i18n-ally settings - Prepared translation infrastructure for future language expansions
19 lines
514 B
Vue
19 lines
514 B
Vue
<template>
|
|
<div class="mt-16 md:mt-0 md:py-12 ">
|
|
<h2 class="font-bold text-center text-slate-600">
|
|
{{ $t('home.logos.title') }}
|
|
</h2>
|
|
<div class="flex flex-wrap items-center justify-center gap-8 mt-10 md:gap-20">
|
|
<img
|
|
class="w-64 aspect-[1256/632]"
|
|
alt="Cloudflare"
|
|
src="@/assets/images/cloudflare.png"
|
|
>
|
|
<img
|
|
class="w-64 aspect-[1256/632]"
|
|
alt="Nuxt.js"
|
|
src="@/assets/images/nuxtjs.png"
|
|
>
|
|
</div>
|
|
</div>
|
|
</template>
|