Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions docs/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
<li><a href="https://github.com/thanglequoc/timer-ninja" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="https://central.sonatype.com/artifact/io.github.thanglequoc/timer-ninja" target="_blank" rel="noopener">Maven Central</a></li>
</ul>
<p class="footer__author">
Made with &#10084;&#65039; by
<a href="https://github.com/thanglequoc" target="_blank" rel="noopener">
<img src="https://github.com/thanglequoc.png?size=28" alt="ThangLeQuoc" class="footer__avatar" loading="lazy">
<strong>ThangLeQuoc</strong>
</a>
— the open-source enthusiast
</p>
<p class="footer__copy">&copy; {{ 'now' | date: "%Y" }} Timer Ninja. Released under the Apache License 2.0.</p>
</div>
</footer>
Expand Down
32 changes: 32 additions & 0 deletions docs/_sass/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,38 @@
}
}

.footer__author {
font-size: 0.85rem;
color: var(--color-text-muted);
margin-bottom: $space-md;
display: flex;
align-items: center;
gap: $space-xs;
flex-wrap: wrap;
justify-content: center;

a {
display: inline-flex;
align-items: center;
gap: $space-xs;
color: var(--color-text);
font-weight: 600;
transition: color $transition-fast;

&:hover {
color: var(--color-primary);
}
}
}

.footer__avatar {
width: 24px;
height: 24px;
border-radius: 50%;
vertical-align: middle;
border: 1px solid var(--color-border);
}

.footer__copy {
font-size: 0.8rem;
color: var(--color-text-muted);
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ <h3>Run &amp; See the Trace &#128007;</h3>
<div class="hero__mascot animate-fade-up" style="width: 100px; height: 100px;">
<img src="{{ '/assets/images/mascot.png' | relative_url }}" alt="Timer Ninja mascot">
</div>
<h2 class="animate-fade-up">Ready to <span class="text-gradient">track them all?</span>?</h2>
<h2 class="animate-fade-up">Ready to <span class="text-gradient">track them all</span>?</h2>
<p class="animate-fade-up" style="max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem;">
Block tracking, custom thresholds, constructor tracking, and more — explore all features in the docs and start measuring Java method execution time the smart way.
</p>
Expand Down
Loading