reza-gh's picture
WRITE THIS PROPOSAL IN TABLES LIKE THE FORMAT FOR PROPOSALLS .... حمایت هدفمند از دامداران خرد/متوسط مبتنی بر شواهد هدفمندی به‌جای یارانه عام؛ پیوند به خدمات ترویج/داده نقشه ذی‌نفعان، معیارهای هدفمندی، بسته ابزار CONTEXT ID IN IRAN FULL PTOPOSAL.. (IN 1 YEAR.. WITH OUTPUT S AND ETC LONG FULL PROPOSAL..
5d4d272 verified
class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
footer {
background: #1e293b;
color: white;
padding: 4rem 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: #a78bfa;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.links h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}
.links ul {
list-style: none;
padding: 0;
margin: 0;
}
.links li {
margin-bottom: 0.5rem;
}
.links a {
color: #e2e8f0;
text-decoration: none;
transition: color 0.2s;
}
.links a:hover {
color: #a78bfa;
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
color: white;
background: #334155;
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.social-links a:hover {
background: #7c3aed;
transform: translateY(-2px);
}
.copyright {
grid-column: 1 / -1;
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #334155;
color: #94a3b8;
}
</style>
<footer>
<div class="container">
<div class="footer-col">
<div class="logo">
<i data-feather="edit-3"></i>
ProposalCraft
</div>
<p>Magical tools for professional proposals.</p>
<div class="social-links">
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="linkedin"></i></a>
<a href="#"><i data-feather="facebook"></i></a>
<a href="#"><i data-feather="github"></i></a>
</div>
</div>
<div class="links">
<h3>Product</h3>
<ul>
<li><a href="/features.html">Features</a></li>
<li><a href="/pricing.html">Pricing</a></li>
<li><a href="/templates.html">Templates</a></li>
<li><a href="/livestock-proposal.html">Sample Proposal</a></li>
<li><a href="/updates.html">Updates</a></li>
</ul>
</div>
<div class="links">
<h3>Company</h3>
<ul>
<li><a href="/about.html">About</a></li>
<li><a href="/careers.html">Careers</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/press.html">Press</a></li>
</ul>
</div>
<div class="links">
<h3>Resources</h3>
<ul>
<li><a href="/help.html">Help Center</a></li>
<li><a href="/tutorials.html">Tutorials</a></li>
<li><a href="/webinars.html">Webinars</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="copyright">
&copy; ${new Date().getFullYear()} ProposalCraft. All rights reserved.
</div>
</div>
</footer>
`;
}
}
customElements.define('custom-footer', CustomFooter);