63 lines
3.9 KiB
PHP
63 lines
3.9 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', '테넌트 지식 업로드')
|
|
|
|
@push('styles')
|
|
<style>
|
|
.placeholder-container { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
|
|
.placeholder-icon { width: 5rem; height: 5rem; margin-bottom: 2rem; opacity: 0.6; color: #7c3aed; }
|
|
.placeholder-title { font-size: 2rem; font-weight: 700; color: #7c3aed; margin-bottom: 1rem; }
|
|
.placeholder-subtitle { font-size: 1.25rem; color: #64748b; max-width: 500px; text-align: center; line-height: 1.8; }
|
|
.placeholder-badge { margin-top: 2rem; padding: 0.5rem 1.5rem; background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; }
|
|
.feature-icon { width: 1.25rem; height: 1.25rem; color: #7c3aed; }
|
|
</style>
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="min-h-screen bg-gradient-to-br from-violet-50 to-purple-100">
|
|
<div class="container mx-auto px-4 py-12">
|
|
<div class="placeholder-container">
|
|
<svg class="placeholder-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253" />
|
|
</svg>
|
|
<h1 class="placeholder-title">테넌트 지식 업로드</h1>
|
|
<p class="placeholder-subtitle">
|
|
각 테넌트가 자체 문서와 지식을 업로드하여
|
|
맞춤형 AI 챗봇을 구축할 수 있습니다.
|
|
</p>
|
|
<div class="placeholder-badge">AI/Automation</div>
|
|
</div>
|
|
|
|
<div class="max-w-4xl mx-auto mt-12">
|
|
<div class="bg-white rounded-2xl shadow-lg p-8">
|
|
<h2 class="text-xl font-bold text-gray-800 mb-6 flex items-center">
|
|
<svg class="feature-icon mr-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
</svg>
|
|
예정 기능
|
|
</h2>
|
|
<div class="grid md:grid-cols-2 gap-6">
|
|
<div class="p-4 bg-violet-50 rounded-lg">
|
|
<h3 class="font-semibold text-violet-800 mb-2">문서 업로드</h3>
|
|
<ul class="text-sm text-gray-600 space-y-1">
|
|
<li>• PDF, Word, Excel 지원</li>
|
|
<li>• 웹페이지 크롤링</li>
|
|
<li>• Notion/Confluence 연동</li>
|
|
</ul>
|
|
</div>
|
|
<div class="p-4 bg-blue-50 rounded-lg">
|
|
<h3 class="font-semibold text-blue-800 mb-2">지식 관리</h3>
|
|
<ul class="text-sm text-gray-600 space-y-1">
|
|
<li>• 자동 벡터 인덱싱</li>
|
|
<li>• 카테고리 분류</li>
|
|
<li>• 버전 관리</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|