Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu-mzc authored and rkttu committed Jan 18, 2025
1 parent bd1122f commit 24e79aa
Show file tree
Hide file tree
Showing 7 changed files with 143 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
13 changes: 13 additions & 0 deletions docs/agenda.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: default
title: "프로그램 일정"
---

# 프로그램 일정

| 시간 | 세션 주제 | 연사 |
|------------|-----------------------------|----------------|
| 10:00-11:00| 키노트 발표: AI의 미래 | 홍길동 교수 |
| 11:15-12:00| 패널 토론: 기술의 현재와 미래 | 김영희, 이철수 |

[메인 페이지로 돌아가기](./index.md)
51 changes: 51 additions & 0 deletions docs/assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

/* 공통 스타일 */
body {
font-family: 'Noto Sans', sans-serif;
background-color: #FAFAFA;
color: #333;
margin: 0;
padding: 0;
}

.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #FFFFFF;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

header {
text-align: center;
margin-bottom: 30px;
}

header h1 {
font-size: 2.5rem;
color: #0D47A1;
}

header p {
font-size: 1.1rem;
margin: 10px 0;
}

a {
color: #0D47A1;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

footer {
text-align: center;
margin-top: 30px;
font-size: 0.9rem;
color: #777;
}
24 changes: 24 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
layout: default
title: "컨퍼런스 이름"
---

# **컨퍼런스 이름**
### 혁신과 영감을 나누는 자리

📅 **날짜**: 2025년 2월 15일
📍 **장소**: 서울 코엑스 컨벤션 센터

[등록하기](./register.md)

---

## 주요 섹션
- [프로그램 일정](./agenda.md)
- [연사 소개](./speakers.md)
- [등록 안내](./register.md)

---

**후원사**
[![후원사 로고](./assets/images/sponsor-logo.png)](https://sponsor-link.com)
22 changes: 22 additions & 0 deletions docs/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<header>
<h1>{{ page.title }}</h1>
</header>
<main>
{{ content }}
</main>
<footer>
<p>© 2025 컨퍼런스 이름. All rights reserved.</p>
</footer>
</div>
</body>
</html>
13 changes: 13 additions & 0 deletions docs/register.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: default
title: "등록 안내"
---

# 등록 안내

컨퍼런스에 참가하려면 아래 링크를 통해 신청서를 작성하세요.
[등록하기](https://registration-link.com)

---

[메인 페이지로 돌아가기](./index.md)
20 changes: 20 additions & 0 deletions docs/speakers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: default
title: "연사 소개"
---

# 연사 소개

## 홍길동 교수
- **소속**: 한국과학기술대학교
- **주제**: "AI의 미래"

![홍길동 사진](./assets/images/speaker1.jpg)

---

## 김영희 연구원
- **소속**: 글로벌 AI 연구소
- **주제**: "기술과 사회의 연결고리"

![김영희 사진](./assets/images/speaker2.jpg)

0 comments on commit 24e79aa

Please sign in to comment.