Files
nuxt-claude/app/app.vue
NEW_GIL_HOME\hyeon e66321386a
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 25m52s
feat: nuxt-claude 프로젝트 초기 커밋
Made-with: Cursor
2026-03-08 16:36:13 +09:00

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>