56 lines
2.9 KiB
PHP
56 lines
2.9 KiB
PHP
<?= $this->extend($viewDatas['layout']['layout']) ?>
|
|
<?= $this->section('content') ?>
|
|
<!-- Layout Middle Start -->
|
|
<div class="layout_top"><?= $this->include($viewDatas['layout']['layout'] . '/top'); ?></div>
|
|
<!-- Layout Middle Start -->
|
|
<!-- Hero Section -->
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/hero'); ?>
|
|
<!-- Stats Bar -->
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/statsbar'); ?>
|
|
<!-- Server Hosting Section -->
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/server'); ?>
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/desktop'); ?>
|
|
<!-- Network & DDoS Section -->
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/network'); ?>
|
|
<!-- Data Center Section -->
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/datacenter'); ?>
|
|
<!-- Support Section -->
|
|
<section id="support" class="py-5 bg-white">
|
|
<div class="container py-5">
|
|
<div class="row g-5">
|
|
<div class="col-lg-5">
|
|
<h2 class="fw-bold mb-4">기술 지원 & 문의</h2>
|
|
<p class="text-muted mb-5">견적 문의, 기술 지원, 장애 접수 등 데몬 IDC 엔지니어와 직접 상담하세요.</p>
|
|
<div class="card bg-light border-0 p-4 rounded-4 mb-4">
|
|
<div class="d-flex align-items-center mb-3">
|
|
<i class="fa-brands fa-telegram fa-2x text-primary me-3"></i>
|
|
<div>
|
|
<div class="fw-bold">Telegram 실시간 상담</div>
|
|
<div class="small text-muted">@daemonidc</div>
|
|
</div>
|
|
</div>
|
|
<a href="https://telegram.me/daemonidc" target="blank" class="btn btn-primary w-100 fw-bold">상담
|
|
시작하기</a>
|
|
</div>
|
|
<div class="card bg-light border-0 p-4 rounded-4">
|
|
<div class="d-flex align-items-center mb-3">
|
|
<i class="fa-brands fa-discord fa-2x text-indigo me-3" style="color: #5865F2;"></i>
|
|
<div>
|
|
<div class="fw-bold">Discord 커뮤니티</div>
|
|
<div class="small text-muted">데몬아이디씨</div>
|
|
</div>
|
|
</div>
|
|
<a href="https://discord.com/invite/k6nQg84N" target="blank"
|
|
class="btn btn-outline-dark w-100 fw-bold">커뮤니티 입장</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-7">
|
|
<?= $this->include($viewDatas['layout']['path'] . '/welcome/inquiry'); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Layout Middle End -->
|
|
<div class=" layout_footer"><?= $this->include("{$viewDatas['layout']['template']}/index_footer"); ?></div>
|
|
<div class="layout_bottom"><?= $this->include($viewDatas['layout']['layout'] . '/bottom'); ?></div>
|
|
<?= $this->endSection() ?>
|