@yeongseoksong/framework 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,108 @@
1
+ import { ReactNode } from 'react';
2
+
3
+ declare const navItems: NavItem[];
4
+ declare const heroSlides: HeroSlide[];
5
+ declare const featureItems: FeatureItem[];
6
+ declare const serviceItems: FeatureItem[];
7
+ declare const timelineEvents: TimelineEvent[];
8
+ declare const ceoMessage: {
9
+ lines: string[];
10
+ name: string;
11
+ role: string;
12
+ };
13
+ declare const testimonialItems: TestimonialItem[];
14
+ declare const pricingItems: PricingItem[];
15
+ declare const faqItems: FaqItem[];
16
+ declare const solutionItems: SolutionItem[];
17
+ declare const clientItems: ClientItem[];
18
+ declare const companyInfo: CompanyInfo;
19
+
20
+ interface CommonInfo {
21
+ id: number;
22
+ order: number;
23
+ isShow: boolean;
24
+ createdAt?: Date;
25
+ updatedAt?: Date;
26
+ }
27
+ interface NavItem extends CommonInfo {
28
+ label: string;
29
+ href?: string;
30
+ highlight?: boolean;
31
+ parentId?: number;
32
+ }
33
+ interface HeroSlide extends CommonInfo {
34
+ image: string;
35
+ title: ReactNode;
36
+ description: string;
37
+ }
38
+ interface FeatureItem extends CommonInfo {
39
+ icon?: ReactNode;
40
+ label?: string;
41
+ title: ReactNode;
42
+ description?: ReactNode;
43
+ }
44
+ interface CompanyAddress {
45
+ label: string;
46
+ address: string;
47
+ order: number;
48
+ embbedUrl?: string;
49
+ }
50
+ interface CompanyInfo {
51
+ name: string;
52
+ registrationNumber: string;
53
+ addresses: CompanyAddress[];
54
+ tel: string;
55
+ fax?: string;
56
+ email: string;
57
+ copyrightYear: number;
58
+ }
59
+ interface TimelineEvent extends CommonInfo {
60
+ year: number;
61
+ month: number;
62
+ title?: string;
63
+ description: string;
64
+ }
65
+ interface StepItem {
66
+ title: string;
67
+ description?: string;
68
+ }
69
+ interface TestimonialItem {
70
+ lines: string[];
71
+ name: string;
72
+ role: string;
73
+ company?: string;
74
+ rating?: number;
75
+ avatar?: string;
76
+ }
77
+ interface PricingFeature {
78
+ text: string;
79
+ included: boolean;
80
+ }
81
+ interface PricingItem {
82
+ name: string;
83
+ price: string;
84
+ period?: string;
85
+ description?: string;
86
+ features: PricingFeature[];
87
+ ctaLabel?: string;
88
+ isPopular?: boolean;
89
+ }
90
+ interface FaqItem {
91
+ question: string;
92
+ answer: string;
93
+ }
94
+ interface ClientItem {
95
+ name: string;
96
+ url: string;
97
+ logo: string;
98
+ }
99
+ interface SolutionItem extends CommonInfo {
100
+ category: string;
101
+ title: ReactNode;
102
+ description: string;
103
+ href?: string;
104
+ ctaLabel?: string;
105
+ icon?: ReactNode;
106
+ }
107
+
108
+ export { type ClientItem, type CommonInfo, type CompanyAddress, type CompanyInfo, type FaqItem, type FeatureItem, type HeroSlide, type NavItem, type PricingFeature, type PricingItem, type SolutionItem, type StepItem, type TestimonialItem, type TimelineEvent, ceoMessage, clientItems, companyInfo, faqItems, featureItems, heroSlides, navItems, pricingItems, serviceItems, solutionItems, testimonialItems, timelineEvents };
@@ -0,0 +1,108 @@
1
+ import { ReactNode } from 'react';
2
+
3
+ declare const navItems: NavItem[];
4
+ declare const heroSlides: HeroSlide[];
5
+ declare const featureItems: FeatureItem[];
6
+ declare const serviceItems: FeatureItem[];
7
+ declare const timelineEvents: TimelineEvent[];
8
+ declare const ceoMessage: {
9
+ lines: string[];
10
+ name: string;
11
+ role: string;
12
+ };
13
+ declare const testimonialItems: TestimonialItem[];
14
+ declare const pricingItems: PricingItem[];
15
+ declare const faqItems: FaqItem[];
16
+ declare const solutionItems: SolutionItem[];
17
+ declare const clientItems: ClientItem[];
18
+ declare const companyInfo: CompanyInfo;
19
+
20
+ interface CommonInfo {
21
+ id: number;
22
+ order: number;
23
+ isShow: boolean;
24
+ createdAt?: Date;
25
+ updatedAt?: Date;
26
+ }
27
+ interface NavItem extends CommonInfo {
28
+ label: string;
29
+ href?: string;
30
+ highlight?: boolean;
31
+ parentId?: number;
32
+ }
33
+ interface HeroSlide extends CommonInfo {
34
+ image: string;
35
+ title: ReactNode;
36
+ description: string;
37
+ }
38
+ interface FeatureItem extends CommonInfo {
39
+ icon?: ReactNode;
40
+ label?: string;
41
+ title: ReactNode;
42
+ description?: ReactNode;
43
+ }
44
+ interface CompanyAddress {
45
+ label: string;
46
+ address: string;
47
+ order: number;
48
+ embbedUrl?: string;
49
+ }
50
+ interface CompanyInfo {
51
+ name: string;
52
+ registrationNumber: string;
53
+ addresses: CompanyAddress[];
54
+ tel: string;
55
+ fax?: string;
56
+ email: string;
57
+ copyrightYear: number;
58
+ }
59
+ interface TimelineEvent extends CommonInfo {
60
+ year: number;
61
+ month: number;
62
+ title?: string;
63
+ description: string;
64
+ }
65
+ interface StepItem {
66
+ title: string;
67
+ description?: string;
68
+ }
69
+ interface TestimonialItem {
70
+ lines: string[];
71
+ name: string;
72
+ role: string;
73
+ company?: string;
74
+ rating?: number;
75
+ avatar?: string;
76
+ }
77
+ interface PricingFeature {
78
+ text: string;
79
+ included: boolean;
80
+ }
81
+ interface PricingItem {
82
+ name: string;
83
+ price: string;
84
+ period?: string;
85
+ description?: string;
86
+ features: PricingFeature[];
87
+ ctaLabel?: string;
88
+ isPopular?: boolean;
89
+ }
90
+ interface FaqItem {
91
+ question: string;
92
+ answer: string;
93
+ }
94
+ interface ClientItem {
95
+ name: string;
96
+ url: string;
97
+ logo: string;
98
+ }
99
+ interface SolutionItem extends CommonInfo {
100
+ category: string;
101
+ title: ReactNode;
102
+ description: string;
103
+ href?: string;
104
+ ctaLabel?: string;
105
+ icon?: ReactNode;
106
+ }
107
+
108
+ export { type ClientItem, type CommonInfo, type CompanyAddress, type CompanyInfo, type FaqItem, type FeatureItem, type HeroSlide, type NavItem, type PricingFeature, type PricingItem, type SolutionItem, type StepItem, type TestimonialItem, type TimelineEvent, ceoMessage, clientItems, companyInfo, faqItems, featureItems, heroSlides, navItems, pricingItems, serviceItems, solutionItems, testimonialItems, timelineEvents };
@@ -0,0 +1,427 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // types/index.ts
21
+ var types_exports = {};
22
+ __export(types_exports, {
23
+ ceoMessage: () => ceoMessage,
24
+ clientItems: () => clientItems,
25
+ companyInfo: () => companyInfo,
26
+ faqItems: () => faqItems,
27
+ featureItems: () => featureItems,
28
+ heroSlides: () => heroSlides,
29
+ navItems: () => navItems,
30
+ pricingItems: () => pricingItems,
31
+ serviceItems: () => serviceItems,
32
+ solutionItems: () => solutionItems,
33
+ testimonialItems: () => testimonialItems,
34
+ timelineEvents: () => timelineEvents
35
+ });
36
+ module.exports = __toCommonJS(types_exports);
37
+
38
+ // types/example.tsx
39
+ var import_jsx_runtime = require("react/jsx-runtime");
40
+ var navItems = [
41
+ { id: 1, order: 1, isShow: true, label: "\uC18C\uAC1C", href: "/about" },
42
+ { id: 11, order: 1, isShow: true, label: "\uD68C\uC0AC\uC18C\uAC1C", href: "/about/company", parentId: 1 },
43
+ { id: 12, order: 2, isShow: true, label: "\uD300\uC18C\uAC1C", href: "/about/team", parentId: 1 },
44
+ { id: 2, order: 2, isShow: true, label: "\uC11C\uBE44\uC2A4", href: "/services" },
45
+ { id: 3, order: 3, isShow: true, label: "\uC194\uB8E8\uC158", href: "/solutions" },
46
+ { id: 4, order: 4, isShow: true, label: "\uC0C1\uC138\uBCF4\uAE30", href: "/solutions/detail" },
47
+ { id: 5, order: 5, isShow: true, label: "\uAE30\uD0C0\uD14C\uC2A4\uD2B8", href: "/solutions/detail" },
48
+ { id: 15, order: 1, isShow: true, label: "\uAE30\uD0C0\uD14C\uC2A4\uD2B8", href: "/solutions/detail", parentId: 5 },
49
+ { id: 16, order: 2, isShow: true, label: "\uAE30\uD0C0\uD14C\uC2A4\uD2B8", href: "/solutions/detail", parentId: 5 },
50
+ { id: 6, order: 6, isShow: true, label: "\uC694\uAE08\uC81C", href: "/pricing" }
51
+ ];
52
+ var heroSlides = [
53
+ {
54
+ id: 1,
55
+ order: 10,
56
+ isShow: true,
57
+ image: "https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1600&q=80",
58
+ title: "\uC5C5\uBB34\uB97C \uB354 \uC2A4\uB9C8\uD2B8\uD558\uAC8C, %c",
59
+ description: "ASM\uACFC PIMS\uB85C \uC790\uC0B0 \uAD00\uB9AC\uBD80\uD130 \uD504\uB85C\uC81D\uD2B8 \uC6B4\uC601\uAE4C\uC9C0 \u2014 \uD558\uB098\uC758 \uD50C\uB7AB\uD3FC\uC73C\uB85C \uBAA8\uB4E0 \uC5C5\uBB34 \uD750\uB984\uC744 \uC5F0\uACB0\uD558\uC138\uC694."
60
+ },
61
+ {
62
+ id: 2,
63
+ order: 3,
64
+ isShow: true,
65
+ image: "https://images.unsplash.com/photo-1531973576160-7125cd663d86?w=1600&q=80",
66
+ title: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
67
+ "\uC790\uC0B0\uC744 \uD55C\uB208\uC5D0,",
68
+ " ",
69
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { children: "\uC2A4\uB9C8\uD2B8 \uC790\uC0B0 \uAD00\uB9AC" })
70
+ ] }),
71
+ description: "\uC7A5\uBE44\xB7\uC124\uBE44\xB7IT \uC790\uC0B0\uC758 \uC218\uBA85 \uC8FC\uAE30\uB97C \uC790\uB3D9\uC73C\uB85C \uCD94\uC801\uD558\uACE0 \uC720\uC9C0\uBCF4\uC218 \uC77C\uC815\uC744 \uAD00\uB9AC\uD558\uC138\uC694."
72
+ },
73
+ {
74
+ id: 2,
75
+ order: 4,
76
+ isShow: true,
77
+ image: "https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1600&q=80",
78
+ title: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
79
+ "\uD504\uB85C\uC81D\uD2B8 \uB0A9\uAE30\uB97C",
80
+ " ",
81
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { children: "\uC9C0\uD0A4\uB294 \uC720\uC77C\uD55C \uBC29\uBC95" })
82
+ ] }),
83
+ description: "WBS\xB7\uC77C\uC815\xB7\uB9AC\uC18C\uC2A4\xB7\uBE44\uC6A9\uC744 \uD55C \uD654\uBA74\uC5D0\uC11C \uAD00\uB9AC\uD558\uACE0 AI\uAC00 \uB9AC\uC2A4\uD06C\uB97C \uC0AC\uC804\uC5D0 \uAC10\uC9C0\uD569\uB2C8\uB2E4."
84
+ }
85
+ ];
86
+ var featureItems = [
87
+ {
88
+ id: 1,
89
+ order: 1,
90
+ isShow: true,
91
+ label: "\uC790\uC0B0 \uAD00\uB9AC",
92
+ title: "\uC2A4\uB9C8\uD2B8 \uC790\uC0B0 \uCD94\uC801",
93
+ description: "\uC7A5\uBE44\xB7\uC124\uBE44\xB7IT \uC790\uC0B0\uC758 \uC218\uBA85 \uC8FC\uAE30\uB97C \uC790\uB3D9\uC73C\uB85C \uCD94\uC801\uD558\uACE0 \uC720\uC9C0\uBCF4\uC218 \uC77C\uC815\uC744 \uAD00\uB9AC\uD558\uC138\uC694."
94
+ },
95
+ {
96
+ id: 2,
97
+ order: 2,
98
+ isShow: true,
99
+ label: "\uD504\uB85C\uC81D\uD2B8",
100
+ title: "\uC77C\uC815 & \uB9AC\uC18C\uC2A4 \uAD00\uB9AC",
101
+ description: "WBS\xB7\uC77C\uC815\xB7\uB9AC\uC18C\uC2A4\xB7\uBE44\uC6A9\uC744 \uD55C \uD654\uBA74\uC5D0\uC11C \uAD00\uB9AC\uD558\uACE0 AI\uAC00 \uB9AC\uC2A4\uD06C\uB97C \uC0AC\uC804\uC5D0 \uAC10\uC9C0\uD569\uB2C8\uB2E4."
102
+ },
103
+ {
104
+ id: 3,
105
+ order: 3,
106
+ isShow: true,
107
+ label: "\uB300\uC2DC\uBCF4\uB4DC",
108
+ title: "\uC2E4\uC2DC\uAC04 \uD604\uD669 \uD30C\uC545",
109
+ description: "\uC870\uC9C1 \uC804\uCCB4\uC758 \uC790\uC0B0 \uD604\uD669\uACFC \uD504\uB85C\uC81D\uD2B8 \uC9C4\uD589\uB960\uC744 \uD558\uB098\uC758 \uB300\uC2DC\uBCF4\uB4DC\uC5D0\uC11C \uD655\uC778\uD558\uC138\uC694."
110
+ },
111
+ {
112
+ id: 4,
113
+ order: 4,
114
+ isShow: true,
115
+ label: "\uD611\uC5C5",
116
+ title: "\uD300 \uD611\uC5C5 \uAC15\uD654",
117
+ description: "\uBD80\uC11C \uAC04 \uC5C5\uBB34 \uC694\uCCAD\uACFC \uC2B9\uC778 \uD750\uB984\uC744 \uC790\uB3D9\uD654\uD558\uC5EC \uCEE4\uBBA4\uB2C8\uCF00\uC774\uC158 \uBE44\uC6A9\uC744 \uC904\uC785\uB2C8\uB2E4."
118
+ },
119
+ {
120
+ id: 5,
121
+ order: 5,
122
+ isShow: true,
123
+ label: "\uBCF4\uC548",
124
+ title: "\uC5D4\uD130\uD504\uB77C\uC774\uC988 \uBCF4\uC548",
125
+ description: "\uC5ED\uD560 \uAE30\uBC18 \uC811\uADFC \uC81C\uC5B4\uC640 \uAC10\uC0AC \uB85C\uADF8\uB85C \uB370\uC774\uD130 \uBCF4\uC548 \uC694\uAC74\uC744 \uCDA9\uC871\uD569\uB2C8\uB2E4."
126
+ },
127
+ {
128
+ id: 6,
129
+ order: 6,
130
+ isShow: true,
131
+ label: "\uC5F0\uB3D9",
132
+ title: "\uAE30\uC874 \uC2DC\uC2A4\uD15C \uC5F0\uB3D9",
133
+ description: "ERP\xB7HR\xB7\uD68C\uACC4 \uC2DC\uC2A4\uD15C\uACFC API\uB85C \uC5F0\uACB0\uD558\uC5EC \uB370\uC774\uD130\uB97C \uC77C\uC6D0\uD654\uD558\uC138\uC694."
134
+ }
135
+ ];
136
+ var serviceItems = [
137
+ {
138
+ id: 1,
139
+ order: 1,
140
+ isShow: true,
141
+ label: "\uCEE8\uC124\uD305",
142
+ title: "IT \uC804\uB7B5 \uCEE8\uC124\uD305",
143
+ description: "\uC5C5\uBB34 \uD504\uB85C\uC138\uC2A4\uB97C \uBD84\uC11D\uD558\uACE0 \uCD5C\uC801\uC758 \uB514\uC9C0\uD138 \uC804\uD658 \uB85C\uB4DC\uB9F5\uC744 \uC218\uB9BD\uD569\uB2C8\uB2E4."
144
+ },
145
+ {
146
+ id: 2,
147
+ order: 2,
148
+ isShow: true,
149
+ label: "\uAD6C\uCD95",
150
+ title: "\uC2DC\uC2A4\uD15C \uAD6C\uCD95 \xB7 \uCEE4\uC2A4\uD130\uB9C8\uC774\uC9D5",
151
+ description: "\uACE0\uAC1D\uC0AC \uD658\uACBD\uC5D0 \uB9DE\uAC8C ASM\xB7PIMS\uB97C \uCEE4\uC2A4\uD130\uB9C8\uC774\uC9D5\uD558\uACE0 \uC548\uC815\uC801\uC73C\uB85C \uAD6C\uCD95\uD569\uB2C8\uB2E4."
152
+ },
153
+ {
154
+ id: 3,
155
+ order: 3,
156
+ isShow: true,
157
+ label: "\uAD50\uC721",
158
+ title: "\uC0AC\uC6A9\uC790 \uAD50\uC721 \xB7 \uC628\uBCF4\uB529",
159
+ description: "\uD604\uC7A5 \uB2F4\uB2F9\uC790\uBD80\uD130 \uAD00\uB9AC\uC790\uAE4C\uC9C0 \uC5ED\uD560\uBCC4 \uB9DE\uCDA4 \uAD50\uC721\uC73C\uB85C \uBE60\uB978 \uC815\uCC29\uC744 \uB3D5\uC2B5\uB2C8\uB2E4."
160
+ },
161
+ {
162
+ id: 4,
163
+ order: 4,
164
+ isShow: true,
165
+ label: "\uC720\uC9C0\uBCF4\uC218",
166
+ title: "\uC6B4\uC601 \xB7 \uC720\uC9C0\uBCF4\uC218",
167
+ description: "\uC804\uB2F4 \uAE30\uC220\uC9C0\uC6D0\uD300\uC774 \uC7A5\uC560 \uB300\uC751\uBD80\uD130 \uC815\uAE30 \uC810\uAC80\uAE4C\uC9C0 \uC6B4\uC601 \uC804\uBC18\uC744 \uCC45\uC784\uC9D1\uB2C8\uB2E4."
168
+ },
169
+ {
170
+ id: 5,
171
+ order: 5,
172
+ isShow: true,
173
+ label: "\uC5F0\uB3D9",
174
+ title: "ERP \xB7 \uB808\uAC70\uC2DC \uC5F0\uB3D9",
175
+ description: "\uAE30\uC874 ERP\xB7HR\xB7\uD68C\uACC4 \uC2DC\uC2A4\uD15C\uACFC API \uC5F0\uB3D9\uC73C\uB85C \uB370\uC774\uD130 \uB2E8\uC808 \uC5C6\uC774 \uC5F0\uACB0\uD569\uB2C8\uB2E4."
176
+ },
177
+ {
178
+ id: 6,
179
+ order: 6,
180
+ isShow: true,
181
+ label: "\uD074\uB77C\uC6B0\uB4DC",
182
+ title: "\uD074\uB77C\uC6B0\uB4DC \uB9C8\uC774\uADF8\uB808\uC774\uC158",
183
+ description: "\uC628\uD504\uB808\uBBF8\uC2A4 \uD658\uACBD\uC744 \uD074\uB77C\uC6B0\uB4DC\uB85C \uC548\uC804\uD558\uAC8C \uC774\uC804\uD558\uACE0 \uC778\uD504\uB77C \uBE44\uC6A9\uC744 \uCD5C\uC801\uD654\uD569\uB2C8\uB2E4."
184
+ }
185
+ ];
186
+ var timelineEvents = [
187
+ { id: 1, order: 1, isShow: true, year: 2024, month: 11, description: "\uAE30\uC5C5 \uBD80\uC124 \uC5F0\uAD6C\uC18C \uC124\uB9BD" },
188
+ { id: 2, order: 2, isShow: true, year: 2024, month: 8, description: "PIMS v2.0 \uC815\uC2DD \uCD9C\uC2DC" },
189
+ { id: 3, order: 3, isShow: true, year: 2024, month: 3, description: "\uACF5\uACF5\uAE30\uAD00 ASM \uACF5\uAE09 \uACC4\uC57D \uCCB4\uACB0" },
190
+ { id: 4, order: 4, isShow: true, year: 2023, month: 10, description: "ISO 27001 \uC815\uBCF4\uBCF4\uC548 \uC778\uC99D \uCDE8\uB4DD" },
191
+ { id: 5, order: 5, isShow: true, year: 2023, month: 6, description: "ASM \uBAA8\uBC14\uC77C \uC571 \uCD9C\uC2DC (iOS\xB7Android)" },
192
+ { id: 6, order: 6, isShow: true, year: 2023, month: 2, description: "\uC2DC\uB9AC\uC988 A \uD22C\uC790 \uC720\uCE58" },
193
+ { id: 7, order: 7, isShow: true, year: 2022, month: 9, description: "PIMS(\uD504\uB85C\uC81D\uD2B8 \uAD00\uB9AC \uC2DC\uC2A4\uD15C) \uB860\uCE6D" },
194
+ { id: 8, order: 8, isShow: true, year: 2022, month: 4, description: "\uBCA4\uCC98\uAE30\uC5C5 \uC778\uC99D" },
195
+ { id: 9, order: 9, isShow: true, year: 2021, month: 7, description: "ASM(\uC790\uC0B0 \uAD00\uB9AC \uC2DC\uC2A4\uD15C) \uBCA0\uD0C0 \uC11C\uBE44\uC2A4 \uAC1C\uC2DC" },
196
+ { id: 10, order: 10, isShow: true, year: 2021, month: 3, description: "\uBC95\uC778 \uC124\uB9BD" }
197
+ ];
198
+ var ceoMessage = {
199
+ lines: [
200
+ "\uC800\uD76C \uD68C\uC0AC\uB294 \uACE0\uAC1D\uC758 \uC2E0\uB8B0\uB97C \uCD5C\uC6B0\uC120\uC73C\uB85C \uC0DD\uAC01\uD569\uB2C8\uB2E4.",
201
+ "\uB04A\uC784\uC5C6\uB294 \uD601\uC2E0\uACFC \uB3C4\uC804\uC744 \uD1B5\uD574 \uB354 \uB098\uC740 \uB0B4\uC77C\uC744 \uB9CC\uB4E4\uC5B4 \uAC00\uACA0\uC2B5\uB2C8\uB2E4.",
202
+ "\uACE0\uAC1D \uC5EC\uB7EC\uBD84\uC758 \uC131\uACF5\uC774 \uACE7 \uC800\uD76C\uC758 \uC131\uACF5\uC774\uBA70, \uC55E\uC73C\uB85C\uB3C4 \uBCC0\uD568\uC5C6\uC774 \uD568\uAED8\uD558\uACA0\uC2B5\uB2C8\uB2E4."
203
+ ],
204
+ name: "\uD64D\uAE38\uB3D9",
205
+ role: "\uB300\uD45C\uC774\uC0AC"
206
+ };
207
+ var testimonialItems = [
208
+ {
209
+ lines: [
210
+ "\uB3C4\uC785 \uC774\uD6C4 \uC790\uC0B0 \uAD00\uB9AC \uC5C5\uBB34 \uD6A8\uC728\uC774 40% \uD5A5\uC0C1\uB410\uC2B5\uB2C8\uB2E4.",
211
+ "\uC9C0\uC6D0\uD300\uC758 \uC751\uB300\uB3C4 \uB9E4\uC6B0 \uBE60\uB974\uACE0 \uCE5C\uC808\uD569\uB2C8\uB2E4."
212
+ ],
213
+ name: "\uAE40\uBBFC\uC900",
214
+ role: "IT \uC778\uD504\uB77C \uD300\uC7A5",
215
+ company: "\uD55C\uAD6D\uC81C\uC870 \uC8FC\uC2DD\uD68C\uC0AC",
216
+ rating: 5
217
+ },
218
+ {
219
+ lines: [
220
+ "\uAE30\uC874 ERP\uC640 \uC5F0\uB3D9\uC774 \uAE54\uB054\uD558\uAC8C \uB418\uC5B4 \uB370\uC774\uD130 \uC774\uC911 \uC785\uB825\uC774 \uC0AC\uB77C\uC84C\uC2B5\uB2C8\uB2E4.",
221
+ "\uC9C1\uAD00\uC801\uC778 UI \uB355\uBD84\uC5D0 \uC9C1\uC6D0\uB4E4\uB3C4 \uBE60\uB974\uAC8C \uC801\uC751\uD588\uC5B4\uC694."
222
+ ],
223
+ name: "\uC774\uC218\uC9C4",
224
+ role: "\uACBD\uC601\uC9C0\uC6D0 \uD300\uC7A5",
225
+ company: "\uAE00\uB85C\uBC8C\uD14C\uD06C \uC8FC\uC2DD\uD68C\uC0AC",
226
+ rating: 5
227
+ },
228
+ {
229
+ lines: [
230
+ "\uD504\uB85C\uC81D\uD2B8 \uB0A9\uAE30 \uC900\uC218\uC728\uC774 \uB208\uC5D0 \uB744\uAC8C \uC62C\uB790\uC2B5\uB2C8\uB2E4.",
231
+ "\uB9AC\uC18C\uC2A4 \uBC30\uBD84 \uBDF0\uAC00 \uD2B9\uD788 \uC720\uC6A9\uD569\uB2C8\uB2E4."
232
+ ],
233
+ name: "\uBC15\uC131\uD638",
234
+ role: "PMO \uC2E4\uC7A5",
235
+ company: "\uBBF8\uB798\uAC74\uC124 \uC8FC\uC2DD\uD68C\uC0AC",
236
+ rating: 4
237
+ }
238
+ ];
239
+ var pricingItems = [
240
+ {
241
+ name: "\uC2A4\uD0C0\uD130",
242
+ price: "\u20A9290,000",
243
+ period: "\uC6D4",
244
+ description: "\uC18C\uADDC\uBAA8 \uD300\uC744 \uC704\uD55C \uC785\uBB38 \uD50C\uB79C",
245
+ features: [
246
+ { text: "\uC0AC\uC6A9\uC790 \uCD5C\uB300 10\uBA85", included: true },
247
+ { text: "\uC790\uC0B0 \uB4F1\uB85D \uCD5C\uB300 500\uAC74", included: true },
248
+ { text: "\uAE30\uBCF8 \uB300\uC2DC\uBCF4\uB4DC", included: true },
249
+ { text: "\uC774\uBA54\uC77C \uC9C0\uC6D0", included: true },
250
+ { text: "API \uC5F0\uB3D9", included: false },
251
+ { text: "\uCEE4\uC2A4\uD140 \uBCF4\uACE0\uC11C", included: false },
252
+ { text: "\uC804\uB2F4 \uC9C0\uC6D0 \uB9E4\uB2C8\uC800", included: false }
253
+ ],
254
+ ctaLabel: "\uBB34\uB8CC\uB85C \uC2DC\uC791\uD558\uAE30"
255
+ },
256
+ {
257
+ name: "\uD504\uB85C",
258
+ price: "\u20A9690,000",
259
+ period: "\uC6D4",
260
+ description: "\uC131\uC7A5\uD558\uB294 \uD300\uC744 \uC704\uD55C \uD575\uC2EC \uD50C\uB79C",
261
+ features: [
262
+ { text: "\uC0AC\uC6A9\uC790 \uCD5C\uB300 50\uBA85", included: true },
263
+ { text: "\uC790\uC0B0 \uB4F1\uB85D \uBB34\uC81C\uD55C", included: true },
264
+ { text: "\uACE0\uAE09 \uB300\uC2DC\uBCF4\uB4DC & \uBD84\uC11D", included: true },
265
+ { text: "\uC6B0\uC120 \uC774\uBA54\uC77C\xB7\uC804\uD654 \uC9C0\uC6D0", included: true },
266
+ { text: "API \uC5F0\uB3D9", included: true },
267
+ { text: "\uCEE4\uC2A4\uD140 \uBCF4\uACE0\uC11C", included: true },
268
+ { text: "\uC804\uB2F4 \uC9C0\uC6D0 \uB9E4\uB2C8\uC800", included: false }
269
+ ],
270
+ ctaLabel: "14\uC77C \uBB34\uB8CC \uCCB4\uD5D8",
271
+ isPopular: true
272
+ },
273
+ {
274
+ name: "\uC5D4\uD130\uD504\uB77C\uC774\uC988",
275
+ price: "\uBB38\uC758",
276
+ description: "\uB300\uADDC\uBAA8 \uC870\uC9C1\uC744 \uC704\uD55C \uB9DE\uCDA4 \uD50C\uB79C",
277
+ features: [
278
+ { text: "\uC0AC\uC6A9\uC790 \uBB34\uC81C\uD55C", included: true },
279
+ { text: "\uC790\uC0B0 \uB4F1\uB85D \uBB34\uC81C\uD55C", included: true },
280
+ { text: "\uC804\uC6A9 \uB300\uC2DC\uBCF4\uB4DC \uAD6C\uC131", included: true },
281
+ { text: "24/7 \uC804\uC6A9 \uAE30\uC220 \uC9C0\uC6D0", included: true },
282
+ { text: "API & \uB808\uAC70\uC2DC \uC5F0\uB3D9", included: true },
283
+ { text: "\uCEE4\uC2A4\uD140 \uBCF4\uACE0\uC11C", included: true },
284
+ { text: "\uC804\uB2F4 \uC9C0\uC6D0 \uB9E4\uB2C8\uC800", included: true }
285
+ ],
286
+ ctaLabel: "\uB3C4\uC785 \uBB38\uC758\uD558\uAE30"
287
+ }
288
+ ];
289
+ var faqItems = [
290
+ {
291
+ question: "\uBB34\uB8CC \uCCB4\uD5D8 \uAE30\uAC04\uC774 \uC788\uB098\uC694?",
292
+ answer: "\uD504\uB85C \uD50C\uB79C\uC740 \uC2E0\uC6A9\uCE74\uB4DC \uC5C6\uC774 14\uC77C \uBB34\uB8CC \uCCB4\uD5D8\uC774 \uAC00\uB2A5\uD569\uB2C8\uB2E4. \uCCB4\uD5D8 \uAE30\uAC04 \uC911 \uC5B8\uC81C\uB4E0\uC9C0 \uCDE8\uC18C\uD560 \uC218 \uC788\uC73C\uBA70, \uBE44\uC6A9\uC774 \uCCAD\uAD6C\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4."
293
+ },
294
+ {
295
+ question: "\uAE30\uC874 ERP\xB7HR \uC2DC\uC2A4\uD15C\uACFC \uC5F0\uB3D9\uC774 \uAC00\uB2A5\uD55C\uAC00\uC694?",
296
+ answer: "\uD504\uB85C \uD50C\uB79C \uC774\uC0C1\uC5D0\uC11C REST API \uC5F0\uB3D9\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4. SAP, Oracle, \uB354\uC874 \uB4F1 \uAD6D\uB0B4\uC678 \uC8FC\uC694 ERP\uC640\uC758 \uC5F0\uB3D9 \uC0AC\uB840\uAC00 \uC788\uC73C\uBA70, \uC5D4\uD130\uD504\uB77C\uC774\uC988 \uD50C\uB79C\uC5D0\uC11C\uB294 \uC804\uB2F4 \uC5D4\uC9C0\uB2C8\uC5B4\uAC00 \uCEE4\uC2A4\uD140 \uC5F0\uB3D9\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4."
297
+ },
298
+ {
299
+ question: "\uB370\uC774\uD130 \uBCF4\uC548\uC740 \uC5B4\uB5BB\uAC8C \uAD00\uB9AC\uB418\uB098\uC694?",
300
+ answer: "ISO 27001 \uC778\uC99D\uC744 \uBCF4\uC720\uD558\uACE0 \uC788\uC73C\uBA70, \uBAA8\uB4E0 \uB370\uC774\uD130\uB294 AES-256\uC73C\uB85C \uC554\uD638\uD654\uB418\uC5B4 \uAD6D\uB0B4 \uB370\uC774\uD130\uC13C\uD130\uC5D0 \uC800\uC7A5\uB429\uB2C8\uB2E4. \uC5ED\uD560 \uAE30\uBC18 \uC811\uADFC \uC81C\uC5B4(RBAC)\uC640 \uAC10\uC0AC \uB85C\uADF8\uB97C \uD1B5\uD574 \uB370\uC774\uD130 \uC811\uADFC\uC744 \uCCA0\uC800\uD788 \uAD00\uB9AC\uD569\uB2C8\uB2E4."
301
+ },
302
+ {
303
+ question: "\uB3C4\uC785\uAE4C\uC9C0 \uC5BC\uB9C8\uB098 \uAC78\uB9AC\uB098\uC694?",
304
+ answer: "\uC2A4\uD0C0\uD130\xB7\uD504\uB85C \uD50C\uB79C\uC740 \uB2F9\uC77C \uC140\uD504 \uC628\uBCF4\uB529\uC774 \uAC00\uB2A5\uD569\uB2C8\uB2E4. \uC5D4\uD130\uD504\uB77C\uC774\uC988 \uD50C\uB79C\uC740 \uC694\uAD6C\uC0AC\uD56D \uBD84\uC11D \u2192 \uC124\uACC4 \u2192 \uAD6C\uCD95 \u2192 \uAD50\uC721\uC758 4\uB2E8\uACC4\uB85C \uC9C4\uD589\uB418\uBA70, \uADDC\uBAA8\uC5D0 \uB530\uB77C \uC77C\uC815\uC774 \uACB0\uC815\uB429\uB2C8\uB2E4."
305
+ },
306
+ {
307
+ question: "\uD50C\uB79C\uC744 \uC911\uAC04\uC5D0 \uBCC0\uACBD\uD560 \uC218 \uC788\uB098\uC694?",
308
+ answer: "\uC5B8\uC81C\uB4E0\uC9C0 \uC5C5\uADF8\uB808\uC774\uB4DC \uB610\uB294 \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC\uAC00 \uAC00\uB2A5\uD569\uB2C8\uB2E4. \uC5C5\uADF8\uB808\uC774\uB4DC \uC2DC \uC794\uC5EC \uAE30\uAC04 \uAE08\uC561\uC740 \uC989\uC2DC \uCC28\uAC10\uB418\uBA70, \uB2E4\uC6B4\uADF8\uB808\uC774\uB4DC\uB294 \uB2E4\uC74C \uACB0\uC81C \uC8FC\uAE30\uBD80\uD130 \uC801\uC6A9\uB429\uB2C8\uB2E4."
309
+ }
310
+ ];
311
+ var solutionItems = [
312
+ {
313
+ id: 1,
314
+ order: 1,
315
+ isShow: true,
316
+ category: "\uC81C\uC870",
317
+ title: "ERP \uD1B5\uD569 \uC194\uB8E8\uC158",
318
+ description: "\uC0DD\uC0B0\xB7\uC7AC\uACE0\xB7\uAD6C\uB9E4\uB97C \uD558\uB098\uC758 \uD50C\uB7AB\uD3FC\uC73C\uB85C \uD1B5\uD569\uD558\uC5EC \uC6B4\uC601 \uD6A8\uC728\uC744 \uB192\uC785\uB2C8\uB2E4.",
319
+ ctaLabel: "\uC790\uC138\uD788 \uBCF4\uAE30"
320
+ },
321
+ {
322
+ id: 2,
323
+ order: 2,
324
+ isShow: true,
325
+ category: "\uBB3C\uB958",
326
+ title: "\uC2A4\uB9C8\uD2B8 \uBB3C\uB958 \uAD00\uB9AC",
327
+ description: "\uC785\uCD9C\uACE0\xB7\uBC30\uC1A1\xB7\uC7AC\uACE0\uB97C \uC2E4\uC2DC\uAC04\uC73C\uB85C \uCD94\uC801\uD558\uC5EC \uACF5\uAE09\uB9DD \uAC00\uC2DC\uC131\uC744 \uD655\uBCF4\uD569\uB2C8\uB2E4.",
328
+ ctaLabel: "\uC790\uC138\uD788 \uBCF4\uAE30"
329
+ },
330
+ {
331
+ id: 3,
332
+ order: 3,
333
+ isShow: true,
334
+ category: "\uAE08\uC735",
335
+ title: "\uB514\uC9C0\uD138 \uAE08\uC735 \uD50C\uB7AB\uD3FC",
336
+ description: "\uC5EC\uC2E0\xB7\uC218\uC2E0\xB7\uB9AC\uC2A4\uD06C \uAD00\uB9AC\uB97C \uD1B5\uD569\uD558\uC5EC \uAE08\uC735 \uC5C5\uBB34\uC758 \uB514\uC9C0\uD138 \uC804\uD658\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4.",
337
+ ctaLabel: "\uC790\uC138\uD788 \uBCF4\uAE30"
338
+ },
339
+ {
340
+ id: 4,
341
+ order: 4,
342
+ isShow: true,
343
+ category: "\uC720\uD1B5",
344
+ title: "\uC634\uB2C8\uCC44\uB110 \uC720\uD1B5 \uC194\uB8E8\uC158",
345
+ description: "\uC628\xB7\uC624\uD504\uB77C\uC778 \uCC44\uB110\uC744 \uD1B5\uD569\uD558\uACE0 \uACE0\uAC1D \uB370\uC774\uD130\uB97C \uBD84\uC11D\uD558\uC5EC \uB9E4\uCD9C\uC744 \uADF9\uB300\uD654\uD569\uB2C8\uB2E4.",
346
+ ctaLabel: "\uC790\uC138\uD788 \uBCF4\uAE30"
347
+ },
348
+ {
349
+ id: 5,
350
+ order: 5,
351
+ isShow: true,
352
+ category: "\uC758\uB8CC",
353
+ title: "\uC2A4\uB9C8\uD2B8 \uBCD1\uC6D0 \uAD00\uB9AC",
354
+ description: "\uC804\uC790\uC758\uBB34\uAE30\uB85D\xB7\uC608\uC57D\xB7\uCCAD\uAD6C\uB97C \uC5F0\uACC4\uD558\uC5EC \uD658\uC790 \uC911\uC2EC\uC758 \uC758\uB8CC \uC11C\uBE44\uC2A4\uB97C \uC2E4\uD604\uD569\uB2C8\uB2E4.",
355
+ ctaLabel: "\uC790\uC138\uD788 \uBCF4\uAE30"
356
+ },
357
+ {
358
+ id: 6,
359
+ order: 6,
360
+ isShow: true,
361
+ category: "\uACF5\uACF5",
362
+ title: "\uACF5\uACF5\uAE30\uAD00 \uD589\uC815 \uC2DC\uC2A4\uD15C",
363
+ description: "\uBBFC\uC6D0\xB7\uD589\uC815\xB7\uC608\uC0B0 \uAD00\uB9AC\uB97C \uB514\uC9C0\uD138\uD654\uD558\uC5EC \uD589\uC815 \uD6A8\uC728\uC744 \uB192\uC774\uACE0 \uC2DC\uBBFC \uC11C\uBE44\uC2A4\uB97C \uAC1C\uC120\uD569\uB2C8\uB2E4.",
364
+ ctaLabel: "\uC790\uC138\uD788 \uBCF4\uAE30"
365
+ }
366
+ ];
367
+ var clientItems = [
368
+ { name: "\uAD6D\uB9BD\uC804\uD30C\uC5F0\uAD6C\uC6D0", url: "https://www.rra.go.kr/", logo: "/clients/rra.jpg" },
369
+ { name: "\uD589\uC815\uC548\uC804\uBD80", url: "https://www.mois.go.kr/", logo: "/clients/mois.png" },
370
+ { name: "\uAD6D\uBBFC\uAD8C\uC775\uC704\uC6D0\uD68C", url: "https://www.acrc.go.kr/", logo: "/clients/acrc.svg" },
371
+ { name: "\uAD6D\uBBFC\uAC74\uAC15\uBCF4\uD5D8\uACF5\uB2E8", url: "https://www.nhis.or.kr/", logo: "/clients/nhis.png" },
372
+ { name: "\uAD6D\uAC00\uC0DD\uBA85\uC724\uB9AC\uC815\uCC45\uC6D0", url: "https://nibp.kr/", logo: "/clients/nibp.png" },
373
+ { name: "\uAD6D\uBBFC\uC5F0\uAE08\uAD00\uB9AC\uACF5\uB2E8", url: "https://www.nps.or.kr", logo: "/clients/nps.svg" },
374
+ { name: "\uD55C\uAD6D\uC9C0\uB2A5\uC815\uBCF4\uC0AC\uD68C\uC9C4\uD765\uC6D0", url: "https://www.nia.or.kr/", logo: "/clients/nia.png" },
375
+ { name: "\uD55C\uAD6D\uBC29\uC1A1\uD1B5\uC2E0\uC804\uD30C\uC9C4\uD765\uC6D0", url: "https://www.kca.kr/", logo: "/clients/kca.png" },
376
+ { name: "\uD55C\uAD6D\uAD50\uC721\uD559\uC220\uC815\uBCF4\uC6D0", url: "https://www.keris.or.kr", logo: "/clients/keris.png" },
377
+ { name: "\uD55C\uAD6D\uC790\uC0B0\uAD00\uB9AC\uACF5\uC0AC", url: "https://www.kamco.or.kr/", logo: "/clients/kamco.png" },
378
+ { name: "\uD55C\uAD6D\uC815\uBCF4\uD1B5\uC2E0\uAE30\uC220\uD611\uD68C", url: "https://www.tta.or.kr/", logo: "/clients/tta.svg" },
379
+ { name: "\uD55C\uAD6D\uC218\uB825\uC6D0\uC790\uB825", url: "https://www.khnp.co.kr/", logo: "/clients/khnp.png" },
380
+ { name: "\uD55C\uAD6D\uC8FC\uD0DD\uAE08\uC735\uACF5\uC0AC", url: "https://www.hf.go.kr/", logo: "/clients/hf.png" },
381
+ { name: "\uD55C\uAD6D\uC0B0\uC5C5\uC740\uD589", url: "https://www.kdb.co.kr", logo: "/clients/kdb.png" },
382
+ { name: "\uAD50\uBCF4\uC0DD\uBA85", url: "https://www.kyobo.com/", logo: "/clients/kyobo.png" },
383
+ { name: "\uBBF8\uB798\uC5D0\uC14B\uC0DD\uBA85", url: "https://life.miraeasset.com/", logo: "/clients/miraeasset.png" },
384
+ { name: "NH\uB18D\uD611\uC190\uD574\uBCF4\uD5D8", url: "https://www.nhfire.co.kr/", logo: "/clients/nhfire.png" },
385
+ { name: "\uB77C\uC774\uB098\uC0DD\uBA85", url: "https://direct.e-lina.co.kr/", logo: "/clients/lina.png" },
386
+ { name: "SBI\uC800\uCD95\uC740\uD589", url: "https://www.babilloan.com/", logo: "/clients/sbi.png" },
387
+ { name: "\uC6B0\uC815\uC815\uBCF4\uAD00\uB9AC\uC6D0(\uC6B0\uCCB4\uAD6D\uAE08\uC735)", url: "https://kpds.koreapost.go.kr/", logo: "/clients/koreapost.png" },
388
+ { name: "\uD55C\uAD6D\uBB34\uC5ED\uC815\uBCF4\uD1B5\uC2E0", url: "https://www.ktnet.com/", logo: "/clients/ktnet.svg" },
389
+ { name: "SK \uC8FC\uC2DD\uD68C\uC0AC", url: "https://www.sk.co.kr", logo: "/clients/sk.png" }
390
+ ];
391
+ var companyInfo = {
392
+ name: "\uC8FC\uC2DD\uD68C\uC0AC \uD68C\uC0AC\uBA85",
393
+ registrationNumber: "000-00-00000",
394
+ addresses: [
395
+ {
396
+ label: "\uBCF8\uC0AC",
397
+ address: "\uC11C\uC6B8\uD2B9\uBCC4\uC2DC \uC911\uAD6C \uD0DC\uD3C9\uB85C1\uAC00 31",
398
+ order: 1,
399
+ embbedUrl: "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3162.919945!2d126.977929!3d37.566576!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x357ca2012d5c39cf%3A0x7e11eca1405bf29b!2z7ISc7Jq47IucIOyEseyLnCDshqHsmIHroZw!5e0!3m2!1sko!2skr!4v1700000000000!5m2!1sko!2skr"
400
+ },
401
+ {
402
+ label: "\uC9C0\uC0AC",
403
+ address: "\uACBD\uAE30\uB3C4 \uC218\uC6D0\uC2DC \uD314\uB2EC\uAD6C \uD6A8\uC6D0\uB85C 1",
404
+ order: 2,
405
+ embbedUrl: "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3171.836!2d127.028873!3d37.263504!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x357b5f9c56e7cd67%3A0x84e78ef4e31b7bab!2z7IiY7JWE7IucIOyEseyLnCDsiJjslYTrjIDsnYQ!5e0!3m2!1sko!2skr!4v1700000000000!5m2!1sko!2skr"
406
+ }
407
+ ],
408
+ tel: "000-000-0000",
409
+ fax: "000-000-0000",
410
+ email: "contact@company.kr",
411
+ copyrightYear: (/* @__PURE__ */ new Date()).getFullYear()
412
+ };
413
+ // Annotate the CommonJS export names for ESM import in node:
414
+ 0 && (module.exports = {
415
+ ceoMessage,
416
+ clientItems,
417
+ companyInfo,
418
+ faqItems,
419
+ featureItems,
420
+ heroSlides,
421
+ navItems,
422
+ pricingItems,
423
+ serviceItems,
424
+ solutionItems,
425
+ testimonialItems,
426
+ timelineEvents
427
+ });