Spaces:
Configuration error
Configuration error
Upload 4 files
Browse files- .gitattributes +2 -0
- README.md +36 -10
- index.html +130 -18
- 라이거_대표이미지.png +3 -0
- 라이거_데모영상.mp4 +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
라이거_대표이미지.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
라이거_데모영상.mp4 filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,10 +1,36 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Liger Showcase Page Deployment Guide
|
| 2 |
+
|
| 3 |
+
이 폴더(`liger_showcase`)에는 Hugging Face Spaces에 배포할 수 있는 웹사이트 파일들이 모두 포함되어 있습니다.
|
| 4 |
+
|
| 5 |
+
## 🚀 Hugging Face Spaces 배포 방법
|
| 6 |
+
|
| 7 |
+
1. **Hugging Face 접속 및 로그인**: [huggingface.co](https://huggingface.co/)에 접속합니다.
|
| 8 |
+
2. **New Space 생성**:
|
| 9 |
+
- 우측 상단 프로필 클릭 -> **New Space** 선택.
|
| 10 |
+
- **Space Name**: `liger-showcase` (원하는 이름 입력).
|
| 11 |
+
- **License**: `mit` (선택 사항).
|
| 12 |
+
- **Space SDK**: **Static**을 선택하세요 (가장 중요!).
|
| 13 |
+
- **Visibility**: Public (공개) 또는 Private.
|
| 14 |
+
- **Create Space** 클릭.
|
| 15 |
+
3. **파일 업로드**:
|
| 16 |
+
- 생성된 Space 페이지에서 **Files** 탭으로 이동합니다.
|
| 17 |
+
- **Add file** -> **Upload files**를 클릭합니다.
|
| 18 |
+
- 이 폴더(`liger_showcase`) 안에 있는 **모든 파일**(`index.html`, `style.css`, `.mp4`, `.png`)을 드래그하여 업로드합니다.
|
| 19 |
+
- 아래 **Commit changes to main** 버튼을 클릭하여 저장합니다.
|
| 20 |
+
4. **배포 확인**:
|
| 21 |
+
- 잠시 후 **App** 탭으로 이동하면 웹사이트가 배포된 것을 확인할 수 있습니다.
|
| 22 |
+
|
| 23 |
+
## 📝 수정 사항 (선택)
|
| 24 |
+
|
| 25 |
+
### 1. PPT/발표 자료 업로드
|
| 26 |
+
현재 PPT 섹션은 예시로 되어 있습니다. 발표 자료를 보여주려면:
|
| 27 |
+
1. 발표 자료를 PDF로 변환하여 함께 업로드하세요 (예: `presentation.pdf`).
|
| 28 |
+
2. `index.html` 파일을 열고 80번째 줄 근처의 `<div class="ppt-container glass-card">` 안쪽을 수정하여 `iframe`이나 다운로드 링크를 연결하세요.
|
| 29 |
+
|
| 30 |
+
**PDF 바로 보여주기 예시:**
|
| 31 |
+
```html
|
| 32 |
+
<embed src="presentation.pdf" type="application/pdf" width="100%" height="600px" />
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### 2. n8n 워크플로우 연결
|
| 36 |
+
n8n 워크플로우를 직접 보여주거나 실행하게 하려면, n8n 인스턴스의 Webhook URL이나 공개 링크를 `index.html`의 워크플로우 섹션 버튼에 연결하면 됩니다.
|
index.html
CHANGED
|
@@ -1,19 +1,131 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="ko">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Liger - Green-Drive Optimizer</title>
|
| 7 |
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 8 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 9 |
+
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap" rel="stylesheet">
|
| 10 |
+
<link rel="stylesheet" href="style.css">
|
| 11 |
+
<meta name="description" content="Liger: 친환경 주행 경로 최적화 및 충전소 추천 솔루션">
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div class="background-glob"></div>
|
| 15 |
+
|
| 16 |
+
<nav class="navbar">
|
| 17 |
+
<div class="logo">LIGER</div>
|
| 18 |
+
<div class="nav-links">
|
| 19 |
+
<a href="#demo">Demo</a>
|
| 20 |
+
<a href="#presentation">Presentation</a>
|
| 21 |
+
<a href="#workflow">Workflow</a>
|
| 22 |
+
</div>
|
| 23 |
+
</nav>
|
| 24 |
+
|
| 25 |
+
<header class="hero">
|
| 26 |
+
<div class="hero-content">
|
| 27 |
+
<span class="badge">Green-Drive Optimizer</span>
|
| 28 |
+
<h1>스마트한 전기차 라이프의 시작,<br> <span class="gradient-text">LIGER</span></h1>
|
| 29 |
+
<p>최적의 경로와 충전소를 찾아주는 당신만의 AI 드라이빙 파트너</p>
|
| 30 |
+
<div class="cta-group">
|
| 31 |
+
<a href="#demo" class="btn primary">데모 영상 보기</a>
|
| 32 |
+
<a href="#workflow" class="btn secondary">워크플로우 확인하기</a>
|
| 33 |
+
</div>
|
| 34 |
+
</div>
|
| 35 |
+
<div class="hero-image">
|
| 36 |
+
<img src="라이거_대표이미지.png" alt="Liger Dashboard Preview" class="glass-card">
|
| 37 |
+
</div>
|
| 38 |
+
</header>
|
| 39 |
+
|
| 40 |
+
<main>
|
| 41 |
+
<section id="demo" class="section">
|
| 42 |
+
<div class="section-header">
|
| 43 |
+
<h2>Demo Video</h2>
|
| 44 |
+
<p>Liger가 어떻게 작동하는지 확인해보세요</p>
|
| 45 |
+
</div>
|
| 46 |
+
<div class="video-container glass-card">
|
| 47 |
+
<video controls poster="라이거_대표이미지.png">
|
| 48 |
+
<source src="라이거_데모영상.mp4" type="video/mp4">
|
| 49 |
+
브라우저가 비디오 태그를 지원하지 않습니다.
|
| 50 |
+
</video>
|
| 51 |
+
</div>
|
| 52 |
+
</section>
|
| 53 |
+
|
| 54 |
+
<section id="presentation" class="section">
|
| 55 |
+
<div class="section-header">
|
| 56 |
+
<h2>Presentation</h2>
|
| 57 |
+
<p>프로젝트 상세 소개 및 기술 스택</p>
|
| 58 |
+
</div>
|
| 59 |
+
<div class="ppt-container glass-card">
|
| 60 |
+
<!-- PDF 파일을 여기에 업로드하거나 Google Slides embed 코드를 넣으세요 -->
|
| 61 |
+
<div class="placeholder-ppt">
|
| 62 |
+
<div class="icon-box">📊</div>
|
| 63 |
+
<h3>발표 자료 (PPT/PDF)</h3>
|
| 64 |
+
<p>PDF 파일을 레포지토리에 업로드하고, <br><code>embed</code> 태그나 링크로 연결해주세요.</p>
|
| 65 |
+
<a href="#" class="btn secondary small">PDF 다운로드 (예시)</a>
|
| 66 |
+
</div>
|
| 67 |
+
</div>
|
| 68 |
+
</section>
|
| 69 |
+
|
| 70 |
+
<section id="workflow" class="section">
|
| 71 |
+
<div class="section-header">
|
| 72 |
+
<h2>n8n Workflow</h2>
|
| 73 |
+
<p>자동화 로직과 데이터 흐름을 한눈에</p>
|
| 74 |
+
</div>
|
| 75 |
+
<div class="workflow-container glass-card">
|
| 76 |
+
<div class="workflow-info">
|
| 77 |
+
<h3>Core Logic</h3>
|
| 78 |
+
<p>유저 입력 → 경로 최적화 → 충전소 추천 → 결과 리포트 생성</p>
|
| 79 |
+
</div>
|
| 80 |
+
<div class="workflow-viz">
|
| 81 |
+
<!-- n8n 워크플로우 이미지나 iframe을 넣을 수 있습니다 -->
|
| 82 |
+
<div class="code-block">
|
| 83 |
+
<pre><code>
|
| 84 |
+
// n8n Workflow JSON Viewer Link or Image
|
| 85 |
+
[User Input] --> [Tmap API] --> [Filtering] --> [Map Map] --> [Response]
|
| 86 |
+
</code></pre>
|
| 87 |
+
</div>
|
| 88 |
+
<a href="https://huggingface.co/dltmdgus" target="_blank" class="btn primary">Hugging Face 프로필 방문</a>
|
| 89 |
+
</div>
|
| 90 |
+
</div>
|
| 91 |
+
</section>
|
| 92 |
+
</main>
|
| 93 |
+
|
| 94 |
+
<footer>
|
| 95 |
+
<p>© 2024 Liger Team. All rights reserved.</p>
|
| 96 |
+
<div class="socials">
|
| 97 |
+
<a href="https://huggingface.co/dltmdgus" target="_blank">Hugging Face</a>
|
| 98 |
+
</div>
|
| 99 |
+
</footer>
|
| 100 |
+
|
| 101 |
+
<script>
|
| 102 |
+
// Smooth scroll for anchor links
|
| 103 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 104 |
+
anchor.addEventListener('click', function (e) {
|
| 105 |
+
e.preventDefault();
|
| 106 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
| 107 |
+
behavior: 'smooth'
|
| 108 |
+
});
|
| 109 |
+
});
|
| 110 |
+
});
|
| 111 |
+
|
| 112 |
+
// Simple intersection observer for fade-in animations
|
| 113 |
+
const observerOptions = {
|
| 114 |
+
threshold: 0.1
|
| 115 |
+
};
|
| 116 |
+
|
| 117 |
+
const observer = new IntersectionObserver((entries) => {
|
| 118 |
+
entries.forEach(entry => {
|
| 119 |
+
if (entry.isIntersecting) {
|
| 120 |
+
entry.target.classList.add('visible');
|
| 121 |
+
}
|
| 122 |
+
});
|
| 123 |
+
}, observerOptions);
|
| 124 |
+
|
| 125 |
+
document.querySelectorAll('.section, .hero').forEach(el => {
|
| 126 |
+
el.classList.add('fade-in-section');
|
| 127 |
+
observer.observe(el);
|
| 128 |
+
});
|
| 129 |
+
</script>
|
| 130 |
+
</body>
|
| 131 |
</html>
|
라이거_대표이미지.png
ADDED
|
Git LFS Details
|
라이거_데모영상.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04a6612b7c9fba784330cc96c02bd01ad690e7d7ff0e2fb22826a54d153c1307
|
| 3 |
+
size 4318328
|