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,139 @@
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 레이아웃 폴더내 style.css 파일
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/rb.layout/'.$rb_core['layout'].'/style.css">', 0);
?>
<!-- Modern Minimal Layout -->
<div class="modern-minimal-container">
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-content">
<h1 class="hero-title">Simple. Beautiful. Effective.</h1>
<p class="hero-subtitle">최소한의 디자인으로 최대한의 임팩트를 전달합니다.</p>
<div class="hero-cta">
<a href="#about" class="btn-primary">시작하기</a>
<a href="#learn" class="btn-secondary">더 알아보기</a>
</div>
</div>
<div class="hero-visual">
<div class="hero-image-placeholder">
<div class="minimal-shape"></div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features-section">
<div class="container">
<h2 class="section-title">핵심 기능</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
<path d="M12 2L2 7L12 12L22 7L12 2Z" stroke="currentColor" stroke-width="2"/>
<path d="M2 17L12 22L22 17" stroke="currentColor" stroke-width="2"/>
<path d="M2 12L12 17L22 12" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
<h3>모듈화된 구조</h3>
<p>재사용 가능한 컴포넌트로 효율적인 개발</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
<rect x="3" y="3" width="18" height="18" rx="2" stroke="currentColor" stroke-width="2"/>
<path d="M9 9H15V15H9V9Z" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
<h3>반응형 디자인</h3>
<p>모든 디바이스에서 완벽한 경험</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
<circle cx="12" cy="12" r="3" stroke="currentColor" stroke-width="2"/>
<path d="M12 1V3M12 21V23M4.22 4.22L5.64 5.64M18.36 18.36L19.78 19.78M1 12H3M21 12H23M4.22 19.78L5.64 18.36M18.36 5.64L19.78 4.22" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
<h3>성능 최적화</h3>
<p>빠른 로딩과 부드러운 애니메이션</p>
</div>
</div>
</div>
</section>
<!-- Content Section -->
<section class="content-section">
<div class="container">
<div class="content-grid">
<div class="content-text">
<h2>미니멀리즘의 힘</h2>
<p>불필요한 요소를 제거하고 핵심에 집중하는 디자인 철학을 통해 사용자에게 명확하고 직관적인 경험을 제공합니다.</p>
<ul class="benefits-list">
<li>빠른 로딩 속도</li>
<li>직관적인 사용자 경험</li>
<li>브랜드 메시지 강화</li>
<li>유지보수 용이성</li>
</ul>
</div>
<div class="content-visual">
<div class="visual-placeholder">
<div class="minimal-geometry"></div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta-section">
<div class="container">
<div class="cta-content">
<h2>지금 시작하세요</h2>
<p>미니멀한 디자인으로 브랜드의 가치를 전달하세요</p>
<a href="#contact" class="btn-primary-large">프로젝트 시작하기</a>
</div>
</div>
</section>
</div>
<!-- Modern Minimal JavaScript -->
<script>
document.addEventListener('DOMContentLoaded', function() {
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Intersection Observer for animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-in');
}
});
}, observerOptions);
// Observe elements for animation
document.querySelectorAll('.feature-card, .content-grid, .cta-content').forEach(el => {
observer.observe(el);
});
});
</script>
@@ -0,0 +1,373 @@
/* Modern Minimal Theme Styles */
/* CSS Variables for consistent theming */
:root {
--primary-color: #2563eb;
--secondary-color: #64748b;
--accent-color: #f59e0b;
--text-primary: #1e293b;
--text-secondary: #64748b;
--text-light: #94a3b8;
--bg-primary: #ffffff;
--bg-secondary: #f8fafc;
--bg-accent: #f1f5f9;
--border-color: #e2e8f0;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 1.5rem;
--spacing-lg: 2rem;
--spacing-xl: 3rem;
--spacing-2xl: 4rem;
}
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--bg-primary);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--spacing-md);
}
/* Hero Section */
.hero-section {
min-height: 100vh;
display: flex;
align-items: center;
padding: var(--spacing-2xl) 0;
background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.hero-content {
flex: 1;
max-width: 600px;
margin-right: var(--spacing-2xl);
}
.hero-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: var(--spacing-md);
background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: var(--spacing-xl);
line-height: 1.5;
}
.hero-cta {
display: flex;
gap: var(--spacing-md);
flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
display: inline-flex;
align-items: center;
padding: var(--spacing-sm) var(--spacing-lg);
border-radius: var(--radius-md);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.btn-primary {
background-color: var(--primary-color);
color: white;
box-shadow: var(--shadow-md);
}
.btn-primary:hover {
background-color: #1d4ed8;
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-secondary {
background-color: transparent;
color: var(--text-primary);
border-color: var(--border-color);
}
.btn-secondary:hover {
background-color: var(--bg-accent);
border-color: var(--primary-color);
color: var(--primary-color);
}
.hero-visual {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.hero-image-placeholder {
width: 400px;
height: 400px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.minimal-shape {
width: 200px;
height: 200px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
border-radius: 50%;
position: relative;
animation: float 6s ease-in-out infinite;
}
.minimal-shape::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
width: 240px;
height: 240px;
border: 2px solid var(--primary-color);
border-radius: 50%;
opacity: 0.3;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
/* Features Section */
.features-section {
padding: var(--spacing-2xl) 0;
background-color: var(--bg-primary);
}
.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: var(--spacing-2xl);
color: var(--text-primary);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-xl);
}
.feature-card {
padding: var(--spacing-xl);
background-color: var(--bg-primary);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
opacity: 0;
transform: translateY(30px);
}
.feature-card.animate-in {
opacity: 1;
transform: translateY(0);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-color);
}
.feature-icon {
width: 60px;
height: 60px;
background-color: var(--bg-accent);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--spacing-md);
color: var(--primary-color);
}
.feature-card h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.6;
}
/* Content Section */
.content-section {
padding: var(--spacing-2xl) 0;
background-color: var(--bg-secondary);
}
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
align-items: center;
}
.content-text h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}
.content-text p {
font-size: 1.125rem;
color: var(--text-secondary);
margin-bottom: var(--spacing-lg);
line-height: 1.7;
}
.benefits-list {
list-style: none;
padding: 0;
}
.benefits-list li {
padding: var(--spacing-sm) 0;
color: var(--text-secondary);
position: relative;
padding-left: var(--spacing-lg);
}
.benefits-list li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary-color);
font-weight: bold;
}
.content-visual {
display: flex;
justify-content: center;
align-items: center;
}
.visual-placeholder {
width: 300px;
height: 300px;
position: relative;
}
.minimal-geometry {
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--primary-color) 0%, var(--accent-color) 100%);
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
animation: rotate 10s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* CTA Section */
.cta-section {
padding: var(--spacing-2xl) 0;
background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
color: white;
}
.cta-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}
.cta-content h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
}
.cta-content p {
font-size: 1.25rem;
margin-bottom: var(--spacing-xl);
opacity: 0.9;
}
.btn-primary-large {
display: inline-flex;
align-items: center;
padding: var(--spacing-md) var(--spacing-xl);
background-color: white;
color: var(--primary-color);
border-radius: var(--radius-md);
font-weight: 600;
text-decoration: none;
font-size: 1.125rem;
transition: all 0.3s ease;
box-shadow: var(--shadow-lg);
}
.btn-primary-large:hover {
transform: translateY(-3px);
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}
/* Responsive Design */
/* Animation Classes */
.animate-in {
animation: fadeInUp 0.6s ease-out forwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Accessibility */
/* Print Styles */