Excellent — here’s the **complete Deepsite input package** that includes both the **design prompt** (for layout, aesthetic, and styling) and a full **sitemap + copy draft** so it can auto-generate both structure and content for *The Code Company* website in the Art Deco style you requested.
14efcd0
verified
| class CustomFooter extends HTMLElement { | |
| connectedCallback() { | |
| this.attachShadow({ mode: 'open' }); | |
| this.shadowRoot.innerHTML = ` | |
| <style> | |
| :host { | |
| display: block; | |
| background: var(--navy-800); | |
| padding: 4rem 2rem; | |
| border-top: 1px solid rgba(201, 164, 76, 0.1); | |
| } | |
| .footer-content { | |
| max-width: 1440px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 3rem; | |
| } | |
| .footer-logo { | |
| font-family: 'Playfair Display', serif; | |
| font-size: 1.5rem; | |
| font-weight: 700; | |
| color: var(--gold-500); | |
| margin-bottom: 1.5rem; | |
| } | |
| .footer-text { | |
| color: var(--platinum-400); | |
| line-height: 1.6; | |
| margin-bottom: 1.5rem; | |
| } | |
| .footer-heading { | |
| color: var(--ivory-100); | |
| font-weight: 600; | |
| margin-bottom: 1.5rem; | |
| letter-spacing: 0.5px; | |
| } | |
| .footer-links { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.75rem; | |
| } | |
| .footer-links a { | |
| color: var(--platinum-400); | |
| text-decoration: none; | |
| transition: color 0.3s ease; | |
| } | |
| .footer-links a:hover { | |
| color: var(--gold-500); | |
| } | |
| .social-links { | |
| display: flex; | |
| gap: 1rem; | |
| margin-top: 1rem; | |
| } | |
| .social-links a { | |
| color: var(--platinum-400); | |
| transition: color 0.3s ease; | |
| } | |
| .social-links a:hover { | |
| color: var(--gold-500); | |
| } | |
| .footer-bottom { | |
| max-width: 1440px; | |
| margin: 3rem auto 0; | |
| padding-top: 2rem; | |
| border-top: 1px solid rgba(182, 182, 182, 0.1); | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: space-between; | |
| color: var(--platinum-400); | |
| font-size: 0.875rem; | |
| } | |
| @media (max-width: 768px) { | |
| .footer-content { | |
| grid-template-columns: 1fr; | |
| } | |
| .footer-bottom { | |
| flex-direction: column; | |
| gap: 1rem; | |
| } | |
| } | |
| </style> | |
| <div class="footer-content"> | |
| <div class="footer-col"> | |
| <div class="footer-logo">THE CODE COMPANY</div> | |
| <p class="footer-text"> | |
| Engineering intelligence for the AI frontier. | |
| </p> | |
| <div class="social-links"> | |
| <a href="#"><i data-feather="linkedin"></i></a> | |
| <a href="#"><i data-feather="github"></i></a> | |
| <a href="#"><i data-feather="twitter"></i></a> | |
| </div> | |
| </div> | |
| <div class="footer-col"> | |
| <h3 class="footer-heading">Navigation</h3> | |
| <div class="footer-links"> | |
| <a href="/">Home</a> | |
| <a href="/about.html">About</a> | |
| <a href="/capabilities.html">Capabilities</a> | |
| <a href="/case-studies.html">Case Studies</a> | |
| <a href="/contact.html">Contact</a> | |
| </div> | |
| </div> | |
| <div class="footer-col"> | |
| <h3 class="footer-heading">Services</h3> | |
| <div class="footer-links"> | |
| <a href="/capabilities.html#ai">AI & Data Systems</a> | |
| <a href="/capabilities.html#cloud">Cloud Infrastructure</a> | |
| <a href="/capabilities.html#strategy">Technical Strategy</a> | |
| <a href="/capabilities.html#gov">Government Advisory</a> | |
| </div> | |
| </div> | |
| <div class="footer-col"> | |
| <h3 class="footer-heading">Contact</h3> | |
| <div class="footer-links"> | |
| <a href="mailto:contact@thecodecompany.ai">contact@thecodecompany.ai</a> | |
| <a href="tel:+18005551234">+1 (800) 555-1234</a> | |
| <a href="#">SAM.gov UEI: XYZ123456789</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="footer-bottom"> | |
| <div>© ${new Date().getFullYear()} The Code Company Consulting LLC. All rights reserved.</div> | |
| <div> | |
| <a href="/privacy.html" class="mr-4">Privacy Policy</a> | |
| <a href="/terms.html">Terms of Service</a> | |
| </div> | |
| </div> | |
| `; | |
| } | |
| } | |
| customElements.define('custom-footer', CustomFooter); |