Skip to content
Open
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 LandingPage/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Header = () => {
initial={{ opacity: 0, y: -20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6 }}
className="w-full z-50 sticky top-0 backdrop-blur-md bg-white/10 border-b border-white/10"
className="w-full z-50 sticky top-0 backdrop-blur-md bg-gradient-to-r from-black/80 via-purple-900/30 to-pink-900/30 border-b border-purple-500/20"
>
<div className="container mx-auto px-6 py-4 flex items-center justify-between">
<motion.div
Expand All @@ -17,7 +17,7 @@ const Header = () => {
transition={{ delay: 0.3 }}
>

<span className="text-2xl font-bold text-white">InpactAI</span>
<span className="text-2xl font-bold bg-gradient-to-r from-purple-400 via-pink-500 to-purple-400 bg-clip-text text-transparent">InpactAI</span>
</motion.div>

<div className="flex items-center mr-4">
Expand Down