completionId: cgen-9e1bd9a6630445168f8a360fc82a2371

cgen-9e1bd9a6630445168f8a360fc82a2371
This commit is contained in:
Builder.io 2025-11-13 05:47:55 +00:00
parent 0491756bf3
commit dee4702297

View file

@ -834,24 +834,34 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
</div> </div>
<div <div
className="mt-8 pt-8 border-t border-border/40 flex flex-col sm:flex-row justify-between items-center animate-fade-in" className="mt-8 pt-8 flex flex-col sm:flex-row justify-between items-center animate-fade-in transition-all duration-200"
style={{ animationDelay: "0.4s" }} style={{
animationDelay: "0.4s",
borderTopColor: theme.accentHex,
borderTopWidth: "1px",
}}
> >
<p className="text-xs text-muted-foreground hover:text-aethex-400 transition-colors"> <p className="text-xs text-muted-foreground transition-colors">
© 2024 AeThex Corporation. All rights reserved. © 2024 AeThex Corporation. All rights reserved.
</p> </p>
<div className="flex items-center space-x-4 mt-4 sm:mt-0"> <div className="flex items-center space-x-4 mt-4 sm:mt-0">
<Link <Link
to="/privacy" to="/privacy"
onClick={scrollToTop} onClick={scrollToTop}
className="text-xs text-muted-foreground hover:text-aethex-400 transition-all duration-300 hover:scale-105" className="text-xs text-muted-foreground transition-all duration-300 hover:scale-105"
style={{ color: "inherit" }}
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
> >
Privacy Policy Privacy Policy
</Link> </Link>
<Link <Link
to="/terms" to="/terms"
onClick={scrollToTop} onClick={scrollToTop}
className="text-xs text-muted-foreground hover:text-aethex-400 transition-all duration-300 hover:scale-105" className="text-xs text-muted-foreground transition-all duration-300 hover:scale-105"
style={{ color: "inherit" }}
onMouseEnter={(e) => e.currentTarget.style.color = theme.accentHex}
onMouseLeave={(e) => e.currentTarget.style.color = "inherit"}
> >
Terms of Service Terms of Service
</Link> </Link>