Downloaded Instacart's templates and deleted folders from churned customers.

This commit is contained in:
Norm Rasmussen
2026-01-22 14:59:11 -05:00
parent e1c0aa6409
commit 3f47527eca
1392 changed files with 3502 additions and 84500 deletions

View File

@ -0,0 +1,23 @@
<div onclick="window.history.back()" class="carrot-back-button np-hidden-desktop">
<i class="fas fa-chevron-left"></i>
Back
</div>
<style>
.carrot-back-button {
background-color: var(--np-header-color);
color: white;
font-weight: 400;
padding: 10px 16px;
cursor: pointer;
}
</style>
<script>
window.history.scrollRestoration = 'manual';
if(window.history.length > 1) {
document.querySelector('.carrot-back-button').style.display = 'block';
} else {
document.querySelector('.carrot-back-button').style.display = 'none';
}
</script>