Skip to content

Commit 0769b8e

Browse files
Merge pull request #12 from Sahil-u07/Fixed
Fixed
2 parents 28c40f4 + 2b41ef4 commit 0769b8e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/components/Header.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const Header: React.FC = () => {
2828
<div className="w-full px-4 md:px-8 lg:px-12">
2929
<div className="flex items-center justify-between">
3030
{/* Logo Section */}
31-
<div className="flex items-center">
31+
<Link to="/" className="flex items-center">
3232
<img
3333
src="/iotastudiologo.png"
3434
alt="iotastudio logo"
@@ -58,16 +58,15 @@ const Header: React.FC = () => {
5858
.ai
5959
</span>
6060
</div>
61-
</div>
62-
61+
</Link>
6362
{/* Desktop Navigation */}
6463
<nav className="hidden lg:flex items-center space-x-8 xl:space-x-12">
6564
<Link
66-
to="/"
65+
to="#features"
6766
className="text-lg xl:text-xl font-semibold hover:opacity-80 transition-opacity"
6867
style={{ color: colors.neutral[100] }}
6968
>
70-
Home
69+
Features
7170
</Link>
7271
<Link
7372
to="browse-models"

src/components/Hero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ const Hero: React.FC = () => {
106106

107107
<div className="flex flex-col sm:flex-row gap-4">
108108
<Link
109-
to="browse-models"
109+
to="/login"
110110
className="px-8 py-4 rounded-lg text-lg font-medium text-neutral-900 flex items-center justify-center transition-transform hover:transform hover:-translate-y-1 hover:opacity-90"
111111
style={{ backgroundColor: colors.accent[500] }}
112112
>
113-
Browse AI Models <ArrowRight size={20} className="ml-2" />
113+
Get Started <ArrowRight size={20} className="ml-2" />
114114
</Link>
115115
<Link
116116
to="browse-models"

0 commit comments

Comments
 (0)