Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nest ul tags in li correctly #252

Merged
merged 1 commit into from
Jan 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions src/pages/contracting.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ const ContractingPage = () => {
<ul className='body'>
<li>CivicActions, Inc.</li>
<li>GSA Schedule: GS-35F-337BA</li>
<ul>
<li>Professional Services, Health IT and Cloud</li>
</ul>
<li>
<ul>
<li>Professional Services, Health IT and Cloud</li>
</ul>
</li>
<li>UEI: XSZFHRS5QFL5</li>
<li>CAGE Code: 65FK1</li>
<li>NAICS Codes: 541511, 541512, 541513, 541519</li>
Expand All @@ -83,10 +85,12 @@ const ContractingPage = () => {
2003474
</li>
<li>Canadian</li>
<ul>
<li>CivicActions Digital Service ULC (Canadian entity)</li>
<li>Canadian POC: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<li>
<ul>
<li>CivicActions Digital Service ULC (Canadian entity)</li>
<li>Canadian POC: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</li>
</ul>
</div>
<div className='differentiators list--wrapper'>
Expand Down Expand Up @@ -169,4 +173,4 @@ export const Head = () => (
title='Contracting information'
description='We are a Small Business helping government agencies make digital services that build public trust. Learn about contracting with us.'
/>
);
);
Loading