Skip to content

Commit 73b7aa9

Browse files
authored
Merge pull request #216 from pirogramming/develop
[Test] 배포 환경 테스트
2 parents 0125ebe + 374c9b5 commit 73b7aa9

3 files changed

Lines changed: 53 additions & 3 deletions

File tree

static/main/main.css

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
1+
.status-bar {
2+
height: 10px;
3+
}
24

35
.view {
46
height:1%;
@@ -319,5 +321,41 @@
319321
z-index: 1;
320322
}
321323

322-
/* 고정 크기 설정 - 반응형 제거 */
323-
/* 모든 화면 크기에서 동일한 고정 크기 유지 */
324+
h2{
325+
font-family: "Satoshi", Helvetica;
326+
font-size: 20px;
327+
font-weight: 700;
328+
color: #2c3e50;
329+
line-height: 1.2;
330+
margin-bottom: 8px;
331+
text-align: center;
332+
}
333+
334+
.username-highlight {
335+
color: var(--main);
336+
font-weight: 800;
337+
}
338+
339+
.about-healthtant {
340+
padding: 32px 20px;
341+
text-align: center;
342+
margin: 20px;
343+
border-top: 1px solid #e0e0e0;
344+
padding-top: 40px;
345+
}
346+
347+
.about-title {
348+
font-size: 20px;
349+
font-weight: 700;
350+
color: #56AAB2;
351+
margin-bottom: 12px;
352+
}
353+
354+
.about-text {
355+
font-size: 14px;
356+
font-weight: 400;
357+
color: #444;
358+
line-height: 1.5;
359+
text-align: left;
360+
}
361+

templates/main/main_mainpage.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ <h1 class="app-title">HEALTHTANT</h1>
4040
<div class="view">
4141
<!-- 추천 제품 롤링배너 영역 -->
4242
<section class="featured-container">
43+
<div class="main-text">
44+
<h2><span class="username-highlight">{{ user.username | default:"사용자" }}</span>님을 위한 맞춤 추천</h2>
45+
</div>
4346
{% if foods %}
4447
<div class="rolling-banner-container">
4548
<div class="rolling-banner" id="rollingBanner">
@@ -75,6 +78,14 @@ <h1 class="app-title">HEALTHTANT</h1>
7578
<p style="text-align:center; padding:24px;">표시할 식품이 없습니다.</p>
7679
{% endif %}
7780
</section>
81+
<section class="about-healthtant">
82+
<h2 class="about-title">헬스턴트 서비스란?</h2>
83+
<p class="about-text">
84+
헬스턴트는 일상 속 식단을 기록하고 분석하여 건강한 생활을 돕는 서비스입니다.
85+
나의 식습관을 데이터로 확인하고, 맞춤형 인사이트를 얻어보세요!
86+
</p>
87+
</section>
88+
7889
</div>
7990
</div>
8091
{% endblock %}

templates/products/products_detail.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ <h3>공유하기</h3>
5353

5454
<!-- 메인 컨텐츠 -->
5555
<main class="product-content">
56+
5657

5758
<!-- 제품 이미지 -->
5859
<div class="product-image">

0 commit comments

Comments
 (0)