Footer style -radiowy
This commit is contained in:
@@ -9,7 +9,7 @@ const footer = yaml.load(
|
||||
|
||||
<footer class="f-footer">
|
||||
<div class="f-footer-inner">
|
||||
<div class="f-footer-col space-y-1">
|
||||
<div class="f-footer-col">
|
||||
<h3 class="f-footer-col-title">{footer.company.name}</h3>
|
||||
<p class="f-footer-col-text">
|
||||
{footer.company.address.line1}<br />
|
||||
@@ -17,14 +17,12 @@ const footer = yaml.load(
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="f-footer-col space-y-1">
|
||||
<div class="f-footer-col">
|
||||
<h4 class="f-footer-col-title">Kontakt</h4>
|
||||
{
|
||||
footer.contact.phones.map((phone: string) => (
|
||||
<p class="f-footer=col-text">
|
||||
{/* <a href={`tel:${phone.replace(/\s/g, "")}`} class="fuz-footer-link"> */}
|
||||
{phone}
|
||||
{/* </a> */}
|
||||
</p>
|
||||
))
|
||||
}
|
||||
@@ -35,11 +33,11 @@ const footer = yaml.load(
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="f-footer-col space-y-1">
|
||||
<h4 class="f-footer-col-title">Usługi</h4>
|
||||
<div class="f-footer-col">
|
||||
<h4 class="f-footer-col-title">{footer.services.title}</h4>
|
||||
<ul>
|
||||
{
|
||||
footer.services.map((item: any) => (
|
||||
footer.services.items.map((item: any) => (
|
||||
<li>
|
||||
<a href={item.url} title={item.title}>
|
||||
{item.name}
|
||||
|
||||
Reference in New Issue
Block a user