fix: resolve footer text fading issue
Set footer z-index to 20 to prevent canvas overlap. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
parent
c27bbe16c6
commit
e28c6b1e8a
|
|
@ -21,7 +21,7 @@ export default function Home() {
|
|||
<ImageGallery />
|
||||
<CTASection />
|
||||
</main>
|
||||
<Footer />
|
||||
<Footer className="z-20" />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import { Sprout } from "lucide-react"
|
|||
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer className="border-t border-border bg-white">
|
||||
<footer className="border-t border-border bg-white relative z-20">
|
||||
<div className="container py-12">
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||||
<div className="md:col-span-2">
|
||||
|
|
|
|||
Loading…
Reference in New Issue