first commit 2

This commit is contained in:
hmw1001
2026-06-11 18:47:38 +09:00
parent c768729ce6
commit 6f534e33a6
11095 changed files with 1595758 additions and 0 deletions
@@ -0,0 +1,60 @@
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/shop/rb.layout_ft/Trend05/style.css?ver='.G5_SERVER_TIME.'">', 0);
?>
<footer id="site-footer" class="trend05-footer">
<div class="footer-inner container">
<div class="footer-top">
<div class="footer-brand">
<h3 class="footer-logo-text"><?php echo $config['cf_title']; ?></h3>
<p class="footer-slogan">Fun & Creative Shopping</p>
</div>
<div class="footer-newsletter">
<h4>Join Our Newsletter</h4>
<form action="#" class="newsletter-form">
<input type="email" placeholder="Enter your email">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
<div class="footer-links-grid">
<div class="link-col">
<h4>Shop</h4>
<ul>
<li><a href="<?php echo G5_SHOP_URL; ?>/list.php?ca_id=10">New In</a></li>
<li><a href="<?php echo G5_SHOP_URL; ?>/list.php?ca_id=10">Best Sellers</a></li>
<li><a href="#">Sale</a></li>
</ul>
</div>
<div class="link-col">
<h4>Help</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Returns</a></li>
</ul>
</div>
<div class="link-col">
<h4>Social</h4>
<ul>
<li><a href="#">Instagram</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div class="footer-info">
<p>
<strong><?php echo $default['de_admin_company_name']; ?></strong> |
Owner: <?php echo $default['de_admin_company_owner']; ?> |
Tel: <?php echo $default['de_admin_company_tel']; ?>
</p>
<p class="address"><?php echo $default['de_admin_company_addr']; ?></p>
</div>
<p class="copyright">&copy; <?php echo date("Y"); ?> <?php echo $config['cf_title']; ?>. Let's Play!</p>
</div>
</div>
</footer>
@@ -0,0 +1,138 @@
/* Trend05 Footer Style - Playful & Vibrant */
.trend05-footer {
background-color: #333;
color: #fff;
padding: 80px 0 40px;
font-size: 1rem;
/* font-family: 'Poppins', sans-serif; */ /* 💡 [수정] 관리자 설정 폰트 사용을 위해 주석 처리 */
border-top: 5px solid #4ecdc4; /* 상단 컬러 포인트 */
}
.footer-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 60px;
padding-bottom: 40px;
border-bottom: 1px dashed #555;
}
.footer-logo-text {
font-size: 2rem;
font-weight: 900;
margin: 0 0 5px;
color: #ff6b6b; /* 로고 포인트 색상 */
}
.footer-slogan {
color: #aaa;
font-size: 1.1rem;
}
.footer-newsletter h4 {
margin: 0 0 15px;
font-size: 1.2rem;
}
.newsletter-form {
display: flex;
}
.newsletter-form input {
padding: 10px 15px;
border: none;
border-radius: 30px 0 0 30px;
outline: none;
font-family: inherit;
}
.newsletter-form button {
padding: 10px 20px;
background-color: #4ecdc4;
color: #fff;
border: none;
border-radius: 0 30px 30px 0;
cursor: pointer;
font-weight: 700;
font-family: inherit;
transition: background-color 0.3s;
}
.newsletter-form button:hover {
background-color: #3db9b0;
}
.footer-links-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 60px;
text-align: center;
}
.link-col h4 {
font-size: 1.2rem;
color: #4ecdc4;
margin-bottom: 20px;
font-weight: 700;
}
.link-col ul {
list-style: none;
padding: 0;
margin: 0;
}
.link-col li {
margin-bottom: 10px;
}
.link-col a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
font-weight: 500;
}
.link-col a:hover {
color: #fff;
text-decoration: underline;
}
.footer-bottom {
text-align: center;
color: #888;
font-size: 0.9rem;
}
.footer-info {
margin-bottom: 20px;
}
.footer-info p {
margin: 5px 0;
}
.copyright {
color: #666;
}
/* 모바일 반응형 */
@media (max-width: 768px) {
.footer-top {
flex-direction: column;
text-align: center;
gap: 30px;
}
.footer-links-grid {
grid-template-columns: 1fr;
gap: 30px;
}
}