Skip to content
Open
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
4 changes: 2 additions & 2 deletions landing/src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ const Footer: React.FC = () => {
const isHomePage = location.pathname === '/';

return (
<footer className="relative bg-gradient-to-br from-dark via-dark-lighter to-gray-900 py-12 overflow-hidden">
<footer className="relative bg-gradient-to-t from-dark via-dark-lighter to-dark py-12 overflow-hidden">
{/* Background gradient overlays */}
<div className="absolute inset-0 pointer-events-none">
<div className="absolute top-0 left-0 w-96 h-96 rounded-full bg-green-500/5 blur-2xl -translate-x-1/2 -translate-y-1/2"></div>

<div className="absolute bottom-0 right-0 w-96 h-96 rounded-full bg-blue-500/4 blur-3xl translate-x-1/2 translate-y-1/2"></div>
<div className="absolute inset-0 bg-gradient-to-t from-transparent via-green-500/5 to-transparent opacity-50"></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion landing/src/components/sections/HowItWorks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const HowItWorks: React.FC = () => {
);

return (
<section id="how-it-works" className="section bg-dark-lighter">
<section id="how-it-works" className="section bg-gradient-to-t from-dark via-gray-900 to-dark">
<div className="container mx-auto px-3 md:px-6">
<motion.div
initial={{ opacity: 0, y: 20 }}
Expand Down