Skip to content

Commit b021fb9

Browse files
authored
Merge pull request #93 from apsinghdev/os/ox
chore: add gh and remove plr
2 parents f9ad6d0 + a49b9fa commit b021fb9

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Opensox AI is a platform designed to help developers quickly discover open-sourc
2727
- [Prisma](https://www.prisma.io/) – ORM
2828
- [NextAuth.js](https://next-auth.js.org/) – auth
2929
- [Turborepo](https://turbo.build/repo) – monorepo
30-
- [Polar](https://polar.sh/) – payments
3130
- [Vercel](https://vercel.com/) – deployments
3231
- [Railway](https://railway.com/) – deployments
3332

apps/web/src/components/landing-sections/navbar.tsx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React, { useState } from "react";
33
import PrimaryButtom from "../ui/custom-button";
44
import { motion, useScroll, useMotionValueEvent } from "framer-motion";
55
import Image from "next/image";
6-
import { Terminal } from "lucide-react";
6+
import { Terminal, Github } from "lucide-react";
77
import Link from "next/link";
88
import { usePathname } from "next/navigation";
99
import { cn } from "@/lib/utils";
@@ -69,7 +69,16 @@ const Navbar = () => {
6969
);
7070
})}
7171
</div>
72-
<div className="">
72+
<div className="flex items-center gap-3">
73+
<Link
74+
href="https://github.com/apsinghdev/opensox"
75+
target="_blank"
76+
rel="noopener noreferrer"
77+
className="hidden lg:flex items-center gap-2 px-4 py-2.5 bg-[#0d1117] hover:bg-[#161b22] transition-colors rounded-lg border border-[#30363d] text-white"
78+
>
79+
<Github className="w-5 h-5" />
80+
<span className="text-sm font-medium">Contribute</span>
81+
</Link>
7382
<Link href="/dashboard/home" className="cursor-pointer z-30">
7483
<PrimaryButtom>
7584
<Terminal />

0 commit comments

Comments
 (0)