-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (105 loc) · 3.75 KB
/
Copy pathindex.html
File metadata and controls
110 lines (105 loc) · 3.75 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>Farm2You - 홈</title>
<link rel="stylesheet" href="css/style.css" />
<script src="js/main.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="overlay" id="overlay"></div>
<!-- 햄버거 메뉴 -->
<nav class="hamburger-menu" id="hamburger-menu">
<div class="menu-header">
<button id="menu-close" class="close-btn">
<img src="image/icon-close.svg" alt="close" />
</button>
</div>
<ul class="menu-links">
<li><a href="index.html">홈</a></li>
<li><a href="market.html">농작물 마켓</a></li>
<li><a href="contact.html">문의하기</a></li>
<li><a href="create.html">상품 등록 및 수정</a></li>
</ul>
<div class="menu-footer">
<button class="signout-btn">SIGN OUT</button>
</div>
</nav>
<!-- 헤더 -->
<header class="header">
<div class="header-container">
<div class="header-icon left" id="menu-toggle">
<img src="image/icon-menu.svg" alt="menu" />
</div>
<div class="header-logo">
<a href="index.html"><img src="image/logo.svg" alt="FARM2YOU" /></a>
</div>
<div class="header-icon right">
<a href="cart.html">
<img src="image/icon-cart.svg" alt="cart" />
</a>
</div>
</div>
</header>
<!-- 메인 콘텐츠 -->
<section class="hero-section" id="hero-section">
<div class="hero-text">
<img src="image/carrot.png" alt="carrot" class="hero-icon" />
<h1>신선한 농작물의 세계에<br />오신 것을 환영합니다!</h1>
<p>당신의 농작물 구매를 더 쉽고 만족스럽게 만들어 드립니다.</p>
<a href="market.html" class="btn-primary">농작물 마켓 구경가기</a>
</div>
</section>
<section class="latest-product">
<div class="section-header">
<h2>최신 상품</h2>
<p>최고의 품질의 농작물을 확인하세요.</p>
</div>
<div class="product-grid">
<a class="product-card" href="product/apple.html">
<img src="image/apple.svg" alt="사과 350g" />
<h3>사과 350g</h3>
<p>2,000원</p>
</a>
<a class="product-card" href="product/orange.html">
<img src="image/orange.svg" alt="오렌지 500g" />
<h3>오렌지 500g</h3>
<p>1,500원</p>
</a>
<a class="product-card" href="product/tomato.html">
<img src="image/tomato.svg" alt="토마토 500g" />
<h3>토마토 500g</h3>
<p>2,500원</p>
</a>
<a class="product-card" href="product/milk.html">
<img src="image/milk.svg" alt="신선한 우유 1L" />
<h3>신선한 우유 1L</h3>
<p>3,000원</p>
</a>
<a class="product-card" href="product/pear.html">
<img src="image/pear.svg" alt="배 350g" />
<h3>배 350g</h3>
<p>2,500원</p>
</a>
<a class="product-card" href="product/carrot.html">
<img src="image/carrot.svg" alt="당근 500g" />
<h3>당근 500g</h3>
<p>1,800원</p>
</a>
</div>
</section>
<!-- 푸터 -->
<footer class="footer">
<div class="footer-inner">
<img src="image/logo.svg" alt="logo" class="footer-logo" />
<div class="footer-links">
<span>문의: admin@farm2you.com</span>
<a href="privacy.html">개인정보처리방침</a>
<a href="terms.html">이용약관</a>
<span>저작권 © 2025 농작물 쇼핑</span>
</div>
</div>
</footer>
</body>
</html>