UNIT 23 • STAGE 6 OF 7

About & Footer

Two-column grid, about section, page footer

UNIT 6 / 7
STEP 1

About Section and Footer

Every professional directory has a page that explains what it is, who runs it, and how to get listed. This stage adds an About section with a two-column layout: a mission statement on the left and a quick contact info block on the right. Then you will add a simple footer to close out the page.

The About section uses grid-template-columns: 3fr 1fr โ€” three parts content, one part contact details. This is a common editorial layout for pages that need to lead with prose but also surface contact info.

STEP 2

Add the About and Footer CSS

๐Ÿ‘‰ Add after directory CSS: #about { background: white; padding: 80px 0; border-top: 1px solid #e8e2d8; }
.about-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 60px; align-items: start; }
.about-text p { font-size: 1.0625rem; line-height: 1.75; color: #374151; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.contact-card { background: var(--cream); border-radius: 16px; padding: 28px; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.125rem; color: var(--pine); margin-bottom: 16px; }
.contact-item { margin-bottom: 12px; }
.contact-item-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); margin-bottom: 2px; }
.contact-item-value { font-size: 0.9375rem; color: var(--pine); }
footer { background: var(--pine); color: rgba(255,255,255,0.5); padding: 32px 0; text-align: center; font-size: 0.875rem; }
footer a { color: #a4c9a9; text-decoration: none; }
footer a:hover { text-decoration: underline; }
STEP 3

Add the About and Footer HTML

After the directory section, add:

๐Ÿ‘‰ Add after directory section: <section id="about">
  <div class="container">
    <p class="section-label">About This Directory</p>
    <h2 class="section-heading">Built to Support Native Economies</h2>
    <div class="about-grid">
      <div class="about-text">
        <p>This directory was built as a student project rooted in the belief that Native economic sovereignty is inseparable from cultural sovereignty. When Indigenous entrepreneurs build businesses, they create pathways for community members to stay home, earn well, and contribute to Tribal economies.</p>
        <p>All businesses featured here are Indigenous-owned and operated. We verify Tribal affiliation before listing and update the directory each season. If you know of a Native-owned business that should be included, reach out using the contact information on this page.</p>
      </div>
      <div class="contact-card">
        <h3>Get Listed</h3>
        <div class="contact-item"><p class="contact-item-label">Email</p><p class="contact-item-value">list@nativebiz.directory</p></div>
        <div class="contact-item"><p class="contact-item-label">Region</p><p class="contact-item-value">Minnesota &amp; Great Lakes</p></div>
        <div class="contact-item"><p class="contact-item-label">Updated</p><p class="contact-item-value">Summer 2026</p></div>
      </div>
    </div>
  </div>
</section>
<footer>
  <div class="container">
    <p>Native Business Directory • Minnesota &amp; Great Lakes Region • nativebiz.directory</p>
  </div>
</footer>

Stage 6 Complete

The About section is in with a 3fr 1fr grid โ€” prose on the left, contact card on the right. The footer closes the page with the pine background.

Next: Stage 7 combines the search and filter so they work together, and adds a no-results message when nothing matches.

Code Editor
Live Preview