GiniGen AI commited on
Commit
a2d9d2a
·
1 Parent(s): 90f9205

AX 페이지에 PoC 문의 폼 추가 (Formspree 연동 준비)

Browse files

- 위치: AX 탭 데모 섹션 다음, AX 콘텐츠 최하단 (id=ax-poc-form)
- 필드 4종 (형님 명시):
• 이름 (name=name, required)
• 회사명 (name=company, required)
• LLM 종류 (name=llm_type, required, select 6옵션:
inhouse·finetune·api·hybrid·undecided·other)
• 문의 내용 (name=message, required, textarea 6줄)
- Formspree hidden fields:
• _subject: '[지니젠AI · ginigen.net] AX 종합병원 PoC 문의'
• _gotcha: honeypot 봇 차단
- 디자인: glassmorphism 카드, focus 시 cyan 보더+섀도
select 화살표 SVG로 violet 톤 통일
반응형: 모바일에서 이름·회사 row 1열 자동

연결 변경:
- 상단 hero CTA '✉ PoC 사전 신청' → #ax-poc-form 스크롤 (이전: contact 탭)
- 데모 placeholder '사전 PoC 신청하기' → #ax-poc-form 스크롤
- 같은 탭 내 스크롤이라 UX 즉시 응답

GeniGen 일괄 교체 요청:
- HTML/README 내 GeniGen 잔존 0건 확인 (이전 통일 commit에서 완료)
- noop이지만 검증 완료 — 작업 없음

⚠️ 운영 필요 단계:
1) https://formspree.io 가입(무료 50건/월)
2) New Form → contact@ginigen.net 지정
3) 발급된 form ID (예: xrgnzpyo)를 action URL의
'YOUR_FORM_ID' 자리에 교체
4) 첫 제출 시 verification 이메일 1회 클릭

Files changed (1) hide show
  1. index.html +138 -2
index.html CHANGED
@@ -627,6 +627,95 @@
627
  font-weight: 800;
628
  }
629
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
630
  .feat-grid {
631
  display: grid;
632
  grid-template-columns: repeat(3, 1fr);
@@ -1122,7 +1211,7 @@
1122
  블랙박스였던 LLM 내부를 X-Ray로 투시 진단하고, 자동 처방·치료까지 한 플랫폼에서 완결합니다. 외주 5,000만원 진단을 100만원에, 3개월을 30분에.
1123
  </p>
1124
  <div class="hero-cta-row">
1125
- <a href="#contact" class="btn btn-primary" onclick="switchTab('contact'); return false;">
1126
  ✉ PoC 사전 신청
1127
  </a>
1128
  <a href="#pricing-ax" class="btn btn-ghost">
@@ -1220,10 +1309,57 @@
1220
  <div class="pico">🩺</div>
1221
  <h4>AX 종합병원 데모 곧 공개</h4>
1222
  <p>Phase 1 PoC (금융 1사 · 공공 1기관 · 의료 1병원 · 제조 대기업 1곳) 진행 중. 정식 데모는 베타 출시와 함께 공개됩니다.</p>
1223
- <a href="#contact" onclick="switchTab('contact'); return false;">사전 PoC 신청하기</a>
1224
  </div>
1225
  </div>
1226
  </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1227
  </div>
1228
 
1229
  <!-- ============ 인공사회 ============ -->
 
627
  font-weight: 800;
628
  }
629
 
630
+ /* ============ CONTACT FORM (Formspree) ============ */
631
+ .contact-form {
632
+ display: flex;
633
+ flex-direction: column;
634
+ gap: 18px;
635
+ max-width: 720px;
636
+ margin-top: 30px;
637
+ background: var(--surface);
638
+ border: 1px solid var(--border);
639
+ border-radius: 18px;
640
+ padding: 32px 30px;
641
+ backdrop-filter: blur(12px);
642
+ -webkit-backdrop-filter: blur(12px);
643
+ }
644
+ .form-row {
645
+ display: grid;
646
+ grid-template-columns: 1fr 1fr;
647
+ gap: 16px;
648
+ }
649
+ .form-field {
650
+ display: flex;
651
+ flex-direction: column;
652
+ gap: 8px;
653
+ }
654
+ .form-label {
655
+ font-size: 11.5px;
656
+ font-weight: 600;
657
+ color: var(--accent-violet);
658
+ letter-spacing: 1.4px;
659
+ text-transform: uppercase;
660
+ }
661
+ .form-label .req { color: var(--accent-magenta); margin-left: 3px; }
662
+ .contact-form input,
663
+ .contact-form select,
664
+ .contact-form textarea {
665
+ padding: 13px 16px;
666
+ background: rgba(11, 20, 55, 0.40);
667
+ border: 1px solid var(--border);
668
+ border-radius: 12px;
669
+ color: var(--text-primary);
670
+ font-family: inherit;
671
+ font-size: 15px;
672
+ transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
673
+ }
674
+ .contact-form input::placeholder,
675
+ .contact-form textarea::placeholder {
676
+ color: var(--text-muted);
677
+ }
678
+ .contact-form input:focus,
679
+ .contact-form select:focus,
680
+ .contact-form textarea:focus {
681
+ outline: none;
682
+ border-color: var(--accent-cyan);
683
+ background: rgba(11, 20, 55, 0.55);
684
+ box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.12);
685
+ }
686
+ .contact-form textarea { resize: vertical; line-height: 1.6; min-height: 120px; }
687
+ .contact-form select {
688
+ cursor: pointer;
689
+ appearance: none;
690
+ -webkit-appearance: none;
691
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23A855F7' d='M6 8L0 0h12z'/></svg>");
692
+ background-repeat: no-repeat;
693
+ background-position: right 16px center;
694
+ padding-right: 40px;
695
+ }
696
+ .contact-form select option {
697
+ background: var(--bg-deep);
698
+ color: var(--text-primary);
699
+ }
700
+ .form-submit {
701
+ margin-top: 6px;
702
+ align-self: flex-start;
703
+ border: none;
704
+ font-family: inherit;
705
+ font-size: 15px;
706
+ cursor: pointer;
707
+ }
708
+ .form-note {
709
+ font-size: 12.5px;
710
+ color: var(--text-muted);
711
+ line-height: 1.55;
712
+ margin-top: 4px;
713
+ }
714
+ @media (max-width: 700px) {
715
+ .form-row { grid-template-columns: 1fr; }
716
+ .contact-form { padding: 24px 20px; }
717
+ }
718
+
719
  .feat-grid {
720
  display: grid;
721
  grid-template-columns: repeat(3, 1fr);
 
1211
  블랙박스였던 LLM 내부를 X-Ray로 투시 진단하고, 자동 처방·치료까지 한 플랫폼에서 완결합니다. 외주 5,000만원 진단을 100만원에, 3개월을 30분에.
1212
  </p>
1213
  <div class="hero-cta-row">
1214
+ <a href="#ax-poc-form" class="btn btn-primary">
1215
  ✉ PoC 사전 신청
1216
  </a>
1217
  <a href="#pricing-ax" class="btn btn-ghost">
 
1309
  <div class="pico">🩺</div>
1310
  <h4>AX 종합병원 데모 곧 공개</h4>
1311
  <p>Phase 1 PoC (금융 1사 · 공공 1기관 · 의료 1병원 · 제조 대기업 1곳) 진행 중. 정식 데모는 베타 출시와 함께 공개됩니다.</p>
1312
+ <a href="#ax-poc-form">사전 PoC 신청하기</a>
1313
  </div>
1314
  </div>
1315
  </section>
1316
+
1317
+ <section class="section" id="ax-poc-form">
1318
+ <div class="section-title">POC INQUIRY · 24H 응답</div>
1319
+ <h2 class="section-heading">PoC 사전 신청 · 견적 문의.</h2>
1320
+ <p class="section-sub">진단 대상 모델·서비스 규모·희망 일정을 알려주시면 담당자가 24시간 내 회신드립니다. 이메일은 <a href="mailto:contact@ginigen.net" style="color:var(--accent-cyan);">contact@ginigen.net</a>.</p>
1321
+
1322
+ <form class="contact-form" action="https://formspree.io/f/YOUR_FORM_ID" method="POST">
1323
+ <div class="form-row">
1324
+ <label class="form-field">
1325
+ <span class="form-label">이름<span class="req">*</span></span>
1326
+ <input type="text" name="name" required placeholder="홍길동" autocomplete="name">
1327
+ </label>
1328
+ <label class="form-field">
1329
+ <span class="form-label">회사명<span class="req">*</span></span>
1330
+ <input type="text" name="company" required placeholder="㈜OOOO" autocomplete="organization">
1331
+ </label>
1332
+ </div>
1333
+
1334
+ <label class="form-field">
1335
+ <span class="form-label">LLM 종류<span class="req">*</span></span>
1336
+ <select name="llm_type" required>
1337
+ <option value="">— 선택해주세요 —</option>
1338
+ <option value="inhouse">자체 학습 LLM (인하우스 from scratch)</option>
1339
+ <option value="finetune">오픈소스 파인튜닝 (LLaMA · Qwen · Mistral 등)</option>
1340
+ <option value="api">외부 API (OpenAI · Claude · Gemini 등)</option>
1341
+ <option value="hybrid">하이브리드 (자체 + 외부 API 혼용)</option>
1342
+ <option value="undecided">아직 결정 전</option>
1343
+ <option value="other">기타</option>
1344
+ </select>
1345
+ </label>
1346
+
1347
+ <label class="form-field">
1348
+ <span class="form-label">문의 내용<span class="req">*</span></span>
1349
+ <textarea name="message" rows="6" required placeholder="진단 대상 모델·서비스 규모·희망 일정 등 자유롭게 작성해주세요."></textarea>
1350
+ </label>
1351
+
1352
+ <input type="hidden" name="_subject" value="[지니젠AI · ginigen.net] AX 종합병원 PoC 문의">
1353
+ <input type="text" name="_gotcha" style="display:none" tabindex="-1" autocomplete="off">
1354
+
1355
+ <button type="submit" class="btn btn-primary form-submit">
1356
+ ✉ PoC 신청 보내기
1357
+ </button>
1358
+ <div class="form-note">
1359
+ 제출 시 Formspree를 통해 contact@ginigen.net 으로 전달됩니다. 영업·마케팅 외 목적의 무단 수집은 차단됩니다.
1360
+ </div>
1361
+ </form>
1362
+ </section>
1363
  </div>
1364
 
1365
  <!-- ============ 인공사회 ============ -->