80 lines
4.0 KiB
Plaintext
80 lines
4.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@(ViewData["Title"] ?? "백원숙 세무회계")</title>
|
|
<meta name="description" content="@(ViewData["Description"] ?? "사업자 기장, 부동산 양도세·증여세, 종합소득세 전문 상담.")" />
|
|
<meta property="og:title" content="@ViewData["Title"]" />
|
|
<meta property="og:description" content="@ViewData["Description"]" />
|
|
<meta property="og:image" content="@ViewData["OgImage"]" />
|
|
<meta property="og:url" content="@ViewData["OgUrl"]" />
|
|
<meta name="robots" content="index, follow" />
|
|
<meta name="theme-color" content="#C89D6E" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap" rel="stylesheet" />
|
|
<link rel="canonical" href="@ViewData["CanonicalUrl"]" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
|
</head>
|
|
<body class="with-mobile-cta">
|
|
<partial name="_Header" />
|
|
<main role="main" class="pb-5">
|
|
@RenderBody()
|
|
</main>
|
|
<footer class="bg-light border-top mt-5 py-4">
|
|
<div class="container">
|
|
<div class="row g-4">
|
|
<div class="col-md-4">
|
|
<h6 class="fw-bold">백원숙 세무회계</h6>
|
|
<p class="small text-muted">
|
|
사업자 기장, 부동산 양도세·증여세,<br />
|
|
종합소득세 전문 상담
|
|
</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<h6 class="fw-bold">연락처</h6>
|
|
<p class="small">
|
|
📞 <a href="tel:010-4122-8268" class="text-decoration-none">010-4122-8268</a><br />
|
|
📧 <a href="mailto:taxbaik5668@gmail.com" class="text-decoration-none">taxbaik5668@gmail.com</a>
|
|
</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<h6 class="fw-bold">채널</h6>
|
|
<p class="small">
|
|
<a href="http://pf.kakao.com/_xoxchTX" target="_blank" class="btn btn-sm btn-warning me-2">카카오톡</a>
|
|
<a href="https://www.instagram.com/taxtory5668/" target="_blank" class="btn btn-sm btn-outline-secondary">Instagram</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<hr class="my-3" />
|
|
<div class="text-center small text-muted">
|
|
<p>© 2026 백원숙 세무회계. All rights reserved.</p>
|
|
<a href="/taxbaik/privacy" class="text-decoration-none text-muted me-2">개인정보처리방침</a>
|
|
<a href="/taxbaik/terms" class="text-decoration-none text-muted">이용약관</a>
|
|
<a href="/taxbaik/portal" class="text-decoration-none text-muted ms-2">고객 포털</a>
|
|
@if (Context.RequestServices.GetService(typeof(VersionInfo)) is VersionInfo version)
|
|
{
|
|
<div class="mt-2 text-muted" style="font-size: 0.75rem; opacity: 0.6;">
|
|
v@(version.Version) · @version.Built
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Mobile Fixed CTA -->
|
|
<div class="mobile-cta-bar d-lg-none">
|
|
<a href="http://pf.kakao.com/_xoxchTX" target="_blank" class="btn-kakao-mobile">
|
|
💬 카카오 상담하기
|
|
</a>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" defer></script>
|
|
<script src="~/js/site.js" asp-append-version="true" defer></script>
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
</body>
|
|
</html>
|