fix. 폴더 구조 변경

This commit is contained in:
clkim
2025-09-16 14:01:34 +09:00
parent b8eecf8f15
commit 468a08bb91
10 changed files with 12 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ const handleCloseModal = () => {
<template> <template>
<section class="relative h-[640px] lg:h-[1000px]"> <section class="relative h-[640px] lg:h-[1000px]">
<TemplatesBackground <WidgetsBackground
v-if="props.components?.background" v-if="props.components?.background"
:component-data="props.components?.background" :component-data="props.components?.background"
gradient-class="bg-gradient-to-b from-[#100d0f]/0 to-[#100d0f]" gradient-class="bg-gradient-to-b from-[#100d0f]/0 to-[#100d0f]"
@@ -36,16 +36,16 @@ const handleCloseModal = () => {
<div <div
class="relative h-full flex flex-col items-center justify-center gap-4" class="relative h-full flex flex-col items-center justify-center gap-4"
> >
<TemplatesMainTitle <WidgetsMainTitle
v-if="props.components.mainTitle" v-if="props.components.mainTitle"
:component-data="props.components.mainTitle" :component-data="props.components.mainTitle"
class="w-[355px] lg:w-[944px]" class="w-[355px] lg:w-[944px]"
/> />
<TemplatesDescription <WidgetsDescription
v-if="props.components.description" v-if="props.components.description"
:component-data="props.components.description" :component-data="props.components.description"
/> />
<TemplatesVideoPlay <WidgetsVideoPlay
v-if="props.components.videoPlay" v-if="props.components.videoPlay"
:component-data="props.components.videoPlay" :component-data="props.components.videoPlay"
@click="handleVideoPlayClick" @click="handleVideoPlayClick"

View File

@@ -10,7 +10,7 @@ console.log('components:', props.components)
<template> <template>
<section class="relative h-[640px] lg:h-[1000px]"> <section class="relative h-[640px] lg:h-[1000px]">
<TemplatesBackground <WidgetsBackground
v-if="props.components?.cardBackground" v-if="props.components?.cardBackground"
:component-data="props.components?.cardBackground" :component-data="props.components?.cardBackground"
:group-sets="true" :group-sets="true"
@@ -18,25 +18,25 @@ console.log('components:', props.components)
<div <div
class="relative h-full flex flex-col items-center justify-center gap-4" class="relative h-full flex flex-col items-center justify-center gap-4"
> >
<TemplatesSubTitle <WidgetsSubTitle
v-if="props.components.cardSubTitle" v-if="props.components.cardSubTitle"
:component-data="props.components.cardSubTitle" :component-data="props.components.cardSubTitle"
:group-sets="true" :group-sets="true"
class="text-[24px] font-[500] text-[#ffffff] leading-[34px]" class="text-[24px] font-[500] text-[#ffffff] leading-[34px]"
/> />
<TemplatesMainTitle <WidgetsMainTitle
v-if="props.components.cardMainTitle" v-if="props.components.cardMainTitle"
:component-data="props.components.cardMainTitle" :component-data="props.components.cardMainTitle"
:group-sets="true" :group-sets="true"
class="text-[50px] font-[700] text-[#c7a28b] leading-[70px]" class="text-[50px] font-[700] text-[#c7a28b] leading-[70px]"
/> />
<TemplatesDescription <WidgetsDescription
v-if="props.components.cardDescription" v-if="props.components.cardDescription"
:component-data="props.components.cardDescription" :component-data="props.components.cardDescription"
:group-sets="true" :group-sets="true"
class="text-[20px] font-[500] text-white/70 leading-[30px]" class="text-[20px] font-[500] text-white/70 leading-[30px]"
/> />
<TemplatesButtonList <WidgetsButtonList
v-if="props.components.cardButtonList" v-if="props.components.cardButtonList"
:component-data="props.components.cardButtonList" :component-data="props.components.cardButtonList"
:group-sets="true" :group-sets="true"

View File

@@ -1,6 +1,6 @@
import GrVisual01 from '#layers/templates/GrVisual01/index.vue' import GrVisual01 from '#layers/components/templates/GrVisual01/index.vue'
import GrVisual02 from '#layers/templates/GrVisual02/index.vue' import GrVisual02 from '#layers/components/templates/GrVisual02/index.vue'
import GrVisual03 from '#layers/templates/GrVisual03/index.vue' import GrVisual03 from '#layers/components/templates/GrVisual03/index.vue'
// import GrGallery01 from "#layers/templates/GrGallery01/index.vue"; // import GrGallery01 from "#layers/templates/GrGallery01/index.vue";
// import GrGallery02 from "#layers/templates/GrGallery02/index.vue"; // import GrGallery02 from "#layers/templates/GrGallery02/index.vue";
// import GrGallery03 from "#layers/templates/GrGallery03/index.vue"; // import GrGallery03 from "#layers/templates/GrGallery03/index.vue";