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
33 changes: 22 additions & 11 deletions frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,17 +135,28 @@ export function Footer() {
</div>

<div className="mt-12 pt-8 border-t border-[hsl(var(--marketing-card-border))] text-center">
<p className="text-[hsl(var(--marketing-text-muted))]/50 font-light">
漏 {new Date().getFullYear()} Maple AI. All rights reserved. Powered by{" "}
<a
href="https://opensecret.cloud"
target="_blank"
rel="noopener noreferrer"
className="text-[hsl(var(--purple))] hover:text-[hsl(var(--purple))]/80 transition-colors"
>
OpenSecret
</a>
</p>
<div className="flex flex-col items-center gap-4">
<iframe
src="https://status.trymaple.ai/badge?theme=system"
width="250"
height="30"
frameBorder="0"
scrolling="no"
style={{ colorScheme: "normal", marginLeft: "58px" }}
title="BetterStack Status"
/>
Comment thread
AnthonyRonning marked this conversation as resolved.
<p className="text-[hsl(var(--marketing-text-muted))]/50 font-light">
漏 {new Date().getFullYear()} Maple AI. All rights reserved. Powered by{" "}
<a
href="https://opensecret.cloud"
target="_blank"
rel="noopener noreferrer"
className="text-[hsl(var(--purple))] hover:text-[hsl(var(--purple))]/80 transition-colors"
>
OpenSecret
</a>
</p>
</div>
</div>
</div>
</div>
Expand Down
14 changes: 12 additions & 2 deletions frontend/src/components/SimplifiedFooter.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
export function SimplifiedFooter() {
return (
<div className="w-full border-t border-[hsl(var(--marketing-card-border))] py-6 mt-auto">
<div className="max-w-[45rem] mx-auto px-4 text-center">
<p className="text-[hsl(var(--marketing-text-muted))]/70 text-sm">
<div className="max-w-[45rem] mx-auto px-4 flex flex-col items-center">
<iframe
src="https://status.trymaple.ai/badge?theme=system"
width="250"
height="30"
frameBorder="0"
scrolling="no"
style={{ colorScheme: "normal", marginLeft: "58px" }}
title="BetterStack Status"
className="mb-3"
/>
<p className="text-[hsl(var(--marketing-text-muted))]/70 text-sm text-center">
漏 {new Date().getFullYear()} Maple AI. All rights reserved. Powered by{" "}
<a
href="https://opensecret.cloud"
Expand Down
Loading