fix: remover links adicionais não usados
Some checks are pending
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Waiting to run
Some checks are pending
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Waiting to run
This commit is contained in:
parent
f541993699
commit
6058226e68
@ -385,9 +385,9 @@ namespace OnlyOneAccessTemplate.Controllers
|
||||
ViewBag.FooterMadeWith = "Feito com ❤️ no Brasil";
|
||||
|
||||
// Contact info
|
||||
ViewBag.ContactEmail = "contato@seusite.com";
|
||||
ViewBag.ContactPhone = "(11) 99999-9999";
|
||||
ViewBag.ContactAddress = "São Paulo, SP";
|
||||
ViewBag.ContactEmail = "contato@convert-it.online";
|
||||
ViewBag.ContactPhone = null;
|
||||
ViewBag.ContactAddress = "São Bernando do Campo, SP";
|
||||
}
|
||||
|
||||
protected void SetupEnglishContent()
|
||||
|
||||
@ -32,6 +32,18 @@ namespace OnlyOneAccessTemplate.Controllers
|
||||
return View(siteConfig);
|
||||
}
|
||||
|
||||
[Route("privacy")]
|
||||
public IActionResult Privacy()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
[Route("terms")]
|
||||
public IActionResult Terms()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error()
|
||||
{
|
||||
|
||||
@ -235,6 +235,7 @@
|
||||
@await Html.PartialAsync("_AdUnit")
|
||||
|
||||
<!-- Seção CTA Final -->
|
||||
@*
|
||||
<section class="final-cta py-5">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@ -248,7 +249,9 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
*@
|
||||
</div>
|
||||
|
||||
<!-- Sidebar Direita com Anúncios -->
|
||||
<div class="col-xl-2 col-lg-2 d-none d-lg-block">
|
||||
|
||||
@ -63,8 +63,8 @@
|
||||
<p>Para questões sobre esta política de privacidade ou seus dados pessoais, entre em contato conosco:</p>
|
||||
<ul>
|
||||
<li><strong>E-mail:</strong> @ViewBag.ContactEmail</li>
|
||||
<li><strong>Telefone:</strong> @ViewBag.ContactPhone</li>
|
||||
</ul>
|
||||
@* <li><strong>Telefone:</strong> @ViewBag.ContactPhone</li>
|
||||
*@ </ul>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -63,8 +63,8 @@
|
||||
<p>Para questões sobre estes termos, entre em contato conosco:</p>
|
||||
<ul>
|
||||
<li><strong>E-mail:</strong> @ViewBag.ContactEmail</li>
|
||||
<li><strong>Telefone:</strong> @ViewBag.ContactPhone</li>
|
||||
</ul>
|
||||
@* <li><strong>Telefone:</strong> @ViewBag.ContactPhone</li>
|
||||
*@ </ul>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -36,8 +36,12 @@
|
||||
<h6 class="text-primary mb-3">@ViewBag.FooterMenuTitle</h6>
|
||||
<ul class="list-unstyled">
|
||||
<li><a href="@ViewBag.HomeUrl" class="text-light text-decoration-none">@ViewBag.MenuHome</a></li>
|
||||
|
||||
@*
|
||||
<li><a href="@ViewBag.AboutUrl" class="text-light text-decoration-none">@ViewBag.MenuAbout</a></li>
|
||||
<li><a href="@ViewBag.ContactUrl" class="text-light text-decoration-none">@ViewBag.MenuContact</a></li>
|
||||
|
||||
*@
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
@ -18,6 +18,7 @@
|
||||
@ViewBag.MenuHome
|
||||
</a>
|
||||
</li>
|
||||
@*
|
||||
<li class="nav-item">
|
||||
<a class="nav-link @(ViewBag.CurrentPage == "about" ? "active" : "")"
|
||||
href="@ViewBag.AboutUrl">
|
||||
@ -30,6 +31,8 @@
|
||||
@ViewBag.MenuContact
|
||||
</a>
|
||||
</li>
|
||||
|
||||
*@
|
||||
</ul>
|
||||
|
||||
<!-- Language Switcher -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user