File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
apps/web/src/components/landing-sections Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import React, { useState } from "react";
33import PrimaryButtom from "../ui/custom-button" ;
44import { motion , useScroll , useMotionValueEvent } from "framer-motion" ;
55import Image from "next/image" ;
6- import { Terminal } from "lucide-react" ;
6+ import { Terminal , Github } from "lucide-react" ;
77import Link from "next/link" ;
88import { usePathname } from "next/navigation" ;
99import { 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 />
You can’t perform that action at this time.
0 commit comments