-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (120 loc) · 4.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>B.Bee</title>
<link rel="stylesheet" href="/assets/css/header-footer-style.css">
<link rel="stylesheet" href="/assets/css/index-style.css">
</head>
<body>
<header>
<div class="container header-content">
<!-- Logo and Navigation -->
<div class="logo-nav">
<div class="logo">
<a href="/"><img src="/assets/image/logo.png" alt="B.Bee Logo"></a>
</div>
<nav class="nav-menu">
<ul class="nav-list">
<li><a href="/" class="nav-link">Home</a></li>
<li><a href="/project/" class="nav-link">Projects</a></li>
<li><a href="/blog/" class="nav-link">Blog</a></li>
<li><a href="/about/" class="nav-link">About</a></li>
</ul>
</nav>
</div>
<!-- Social Icons -->
<div class="social-icons">
<a href="https://www.instagram.com/_j256p" target="_blank">
<img src="/assets/image/instagram-icon.png" alt="Instagram">
</a>
<a href="https://github.com/bambi0256" target="_blank">
<img src="/assets/image/github-icon.png" alt="GitHub">
</a>
</div>
</div>
<script src="/assets/js/set-current.js" defer></script>
<main>
<!-- Intro Section -->
<section class="intro section">
<div class="container">
<div class="text">
<h1 class="section-title">일상과 일 사이</h1>
<p class="section-description">고양이, 케이크, 그리고 게임 개발</p>
<div class="button-group">
<button class="my-works" onclick="scrollToWorks()">My Works ↓</button>
<button class="about-me" onclick="window.location.href='/about/'">About Me →</button>
</div>
</div>
<div class="image">
<img src="/assets/image/intro-image.jpg" alt="Intro">
</div>
</div>
</section>
<!-- Latest Works Section -->
<section class="latest-works section" id="latest-works">
<div class="container">
<div class="section-header">
<div class="text">
<h2 class="section-title">Recent Project</h2>
<p class="section-description">프로젝트, 열정, 그리고 배움</p>
</div>
<div class="button">
<a href="/project/" class="view-more">View More</a>
</div>
</div>
<div id="latest-work-posts-container" class="post-grid"></div>
</div>
</section>
<!-- Recent Posts Section -->
<section class="recent-posts section">
<div class="container">
<div class="section-header">
<div class="text">
<h2 class="section-title">Recent Post</h2>
<p class="section-description">일상, 생각, 그리고 디저트</p>
</div>
<div class="button">
<a href="/blog/" class="view-more">View More</a>
</div>
</div>
<div id="recent-posts-container" class="post-grid"></div>
</div>
</section>
</main>
<footer>
<div class="container footer-content">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/project/">Projects</a></li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/about/">About</a></li>
</ul>
</nav>
<div class="social-icons">
<a href="https://www.instagram.com/_j256p" target="_blank">
<img src="/assets/image/instagram-icon.png" alt="Instagram">
</a>
<a href="https://github.com/bambi0256" target="_blank">
<img src="/assets/image/github-icon.png" alt="GitHub">
</a>
</div>
<p style="text-align: center;">2024 ⓒ B.Bee | (Font: 데브시스터즈)</p>
</div>
</footer>
<!-- JavaScript for Scroll -->
<script>
function scrollToWorks() {
const worksSection = document.querySelector('#latest-works');
if (worksSection) {
worksSection.scrollIntoView({ behavior: 'smooth' });
}
}
</script>
<script src="/assets/js/pagination-project.js" defer></script>
<script src="/assets/js/pagination-blog.js" defer></script>
<script src="/assets/js/set-current.js" defer></script>
</body>
</html>