Skip to content

Commit c01eb76

Browse files
authored
Merge pull request #39 from SpaceyaTech/tools-section
Tools section
2 parents bb0e1a6 + 8b4fbb9 commit c01eb76

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/components/navigation/LandingPageNavbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function LandingPageNavbar({}: LandingPageNavbarProps) {
77
const isLoading = useRouterState({ select: (s) => s.status === "pending" });
88

99
return (
10-
<header className="sticky top-0 z-30 flex w-full flex-col items-center justify-between bg-base-200">
10+
<header className="sticky top-0 z-30 flex w-full flex-col items-center justify-between bg-base-200/520">
1111
<nav className="flex h-full w-full items-center justify-between gap-5 px-5 p-2">
1212
<Link to="/" className="btn btn-link btn-sm">
1313
<img src="/colabs.png" alt="logo" className="h-8 w-fit" />

src/routes/-components/RootComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { TanStackRouterDevtools } from "./RouterDevttols";
66

77
export function RootComponent() {
88
return (
9-
<div className="content min-h-screen bg-gradient-to-r from-base-100 via-primary/20 to-base-100 w-full">
9+
<div className="content min-h-screen bg-gradient-to-r from-base-100 via-primary/20 dark:via-primary/20 to-base-100 w-full">
1010
<Outlet />
1111
<ReactQueryDevtools buttonPosition="bottom-right" />
1212
<TanStackRouterDevtools position="bottom-left" />

src/routes/-components/tools-section/ToolsSection.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ export function ToolsSection({}: ToolsSectionProps) {
1717
<div className="flex h-full w-full flex-col items-center justify-center p-[3%] md:flex-row">
1818
{/* gamification+ */}
1919
<div className="flex h-full w-full items-center justify-center rounded-xl border-[1px] border-[#294740]">
20-
<img className="" src="/public/landing-page/gamification.svg" />
20+
<img className="" src="/landing-page/gamification.svg" />
2121
</div>
2222
{/* community */}
2323
<div className="flex h-full w-full items-center justify-center">
24-
<img className="" src="/public/landing-page/community.svg" />
24+
<img className="" src="/landing-page/community.svg" />
2525
</div>
2626
</div>
2727
</div>
2828
<div className="flex h-full w-full flex-col items-center justify-center p-[3%] md:flex-row">
2929
{/* technologies */}
3030
<div className="flex h-full w-full items-center justify-center">
31-
<img className="" src="/public/landing-page/tech.svg" />
31+
<img className="" src="/landing-page/tech.svg" />
3232
</div>
3333
<div className="flex h-full w-full items-center justify-center">
34-
<img className="" src="/public/landing-page/teams.svg" />
34+
<img className="" src="/landing-page/teams.svg" />
3535
</div>
3636
</div>
3737
</div>

0 commit comments

Comments
 (0)