Sink/app/components/home/Logos.vue
wudi 7cadbfe2b1 refactor: Migrate project files and directories to the app directory using the new compatibilityVersion: 4 feature
- Moved `app.config.ts` to the `app` directory
- Migrated `.vue` files and other assets to the `app` directory
- Updated import paths to reflect the new file locations
2025-03-24 11:05:59 +08:00

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>