Skip to content

Commit dd39147

Browse files
authored
Merge pull request #74 from IRISX-AI/fix-refactore/pricing-fix
Fix refactore/pricing fix
2 parents 21c0acc + 8ff780a commit dd39147

3 files changed

Lines changed: 353 additions & 160 deletions

File tree

client/app/Components/Header.tsx

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,18 @@ const Header = () => {
6767
</Link>
6868

6969
<nav className="hidden md:flex gap-6 text-[10px] lg:text-xs font-bold uppercase tracking-[0.2em]">
70-
{["About", "Features", "how-to-install", "Guide"].map((item) => (
71-
<Link
72-
key={item}
73-
href={`/${item.toLowerCase()}`}
74-
className="hover:text-[#10b981] transition-all duration-300 relative group"
75-
>
76-
{item}
77-
<span className="absolute -bottom-1 left-0 w-0 h-px bg-[#10b981] group-hover:w-full transition-all duration-300" />
78-
</Link>
79-
))}
70+
{["About", "Features", "Pricing", "how-to-install", "Guide"].map(
71+
(item) => (
72+
<Link
73+
key={item}
74+
href={`/${item.toLowerCase()}`}
75+
className="hover:text-[#10b981] transition-all duration-300 relative group"
76+
>
77+
{item}
78+
<span className="absolute -bottom-1 left-0 w-0 h-px bg-[#10b981] group-hover:w-full transition-all duration-300" />
79+
</Link>
80+
),
81+
)}
8082
</nav>
8183

8284
<div className="flex items-center gap-4">
@@ -148,7 +150,13 @@ const Header = () => {
148150
</Link>
149151

150152
<nav className="flex flex-col gap-10 text-sm font-bold uppercase tracking-[0.2em]">
151-
{["About", "Features", "how-to-install", "Guide"].map((item) => (
153+
{[
154+
"About",
155+
"Features",
156+
"Pricing",
157+
"how-to-install",
158+
"Guide",
159+
].map((item) => (
152160
<Link
153161
key={item}
154162
href={`/${item.toLowerCase()}`}

0 commit comments

Comments
 (0)