Skip to content

Commit f782481

Browse files
author
jean-philippe
committed
stuf
1 parent 51be559 commit f782481

2 files changed

Lines changed: 14 additions & 13 deletions

File tree

src/components/header/Mainheader.tsx

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,22 @@ export default component$(() => {
1111
>
1212
<div class="flex items-center gap-4">
1313
<Link
14-
href={"/landing"}
14+
href={"/home"}
1515
class="hidden bg-gradient-to-r from-primary to-primary bg-clip-text px-1 text-xl font-bold text-transparent transition-colors hover:from-primary/90 hover:to-primary/90 md:block"
1616
>
17-
Just R&D
17+
Just hello
1818
</Link>
1919
</div>
20-
2120
<div class="flex items-center gap-4">
2221
<Link
23-
href="/profile"
24-
class="rounded-lg bg-secondary px-4 py-2 text-sm font-medium text-secondary-foreground shadow-sm transition-all duration-300 hover:bg-secondary/90 hover:shadow-lg md:hidden"
22+
href={"/profile"}
23+
class="hidden bg-gradient-to-r from-primary to-primary bg-clip-text px-1 text-xl font-bold text-transparent transition-colors hover:from-primary/90 hover:to-primary/90 md:block"
2524
>
2625
Profile
2726
</Link>
27+
</div>
2828

2929

30-
31-
32-
33-
34-
35-
36-
</div>
3730
</nav>
3831
</header>
3932
)

src/routes/profile/index.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ import {
88
export default component$(() => {
99
return (
1010
// Keep the main background color, the warmth is part of the theme
11-
<div class="min-h-screen bg-[#FFF8F0] pb-16 md:pb-20"></div>
11+
<div class="min-h-screen bg-[#FFF8F0] pb-16 md:pb-20">
12+
13+
14+
15+
16+
<h1 class="text-2xl font-bold">Profile</h1>
17+
18+
19+
</div>
1220
);
1321
});

0 commit comments

Comments
 (0)