Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 25m52s
Made-with: Cursor
25 lines
442 B
Vue
25 lines
442 B
Vue
<script setup>
|
|
useHead({
|
|
meta: [
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', href: '/favicon.ico' }
|
|
],
|
|
htmlAttrs: {
|
|
lang: 'ko'
|
|
}
|
|
})
|
|
|
|
useSeoMeta({
|
|
title: 'CampGear - 캠핑 장비 관리',
|
|
description: '캠핑 장비 구매 정보 관리, 중고 판매 관리, AI 장비 추천'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|