File tree Expand file tree Collapse file tree
app/(main)/dashboard/pro/dashboard
components/landing-sections Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 "@octokit/graphql" : " ^9.0.1" ,
2828 "@opensox/shared" : " workspace:*" ,
2929 "@prisma/client" : " ^5.22.0" ,
30- "@trpc/server" : " ^11.5.1 " ,
30+ "@trpc/server" : " ^11.7.2 " ,
3131 "cors" : " ^2.8.5" ,
3232 "dotenv" : " ^16.5.0" ,
3333 "express" : " ^4.21.2" ,
Original file line number Diff line number Diff line change 3030 "gray-matter" : " ^4.0.3" ,
3131 "lucide-react" : " ^0.456.0" ,
3232 "marked" : " ^17.0.0" ,
33- "next" : " 15.5.3 " ,
33+ "next" : " 16.0.7 " ,
3434 "next-auth" : " ^4.24.11" ,
3535 "next-themes" : " ^0.4.3" ,
3636 "posthog-js" : " ^1.203.1" ,
5353 "@types/sanitize-html" : " ^2.16.0" ,
5454 "depcheck" : " ^1.4.7" ,
5555 "eslint" : " ^8" ,
56- "eslint-config-next" : " 15 .0.2 " ,
56+ "eslint-config-next" : " 16 .0.7 " ,
5757 "postcss" : " ^8" ,
5858 "prettier" : " ^3.4.1" ,
5959 "tailwindcss" : " ^3.4.1" ,
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export default function ProDashboardPage() {
106106 < div className = "max-w-2xl mx-auto text-center" >
107107 < h1 className = "text-2xl md:text-3xl font-semibold text-text-primary mb-4" >
108108 hi investors, ajeetunc is on the way to deliver the shareholder value.
109- soon you'll see all the pro perks here. thanks for investing
109+ soon you'll see all the pro perks here. thanks for investin!
110110 </ h1 >
111111 { isPaidUser && (
112112 < div className = "mt-6" >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const CTA = () => {
1616 />
1717 < div className = "space-y-2" >
1818 < h2 className = 'text-4xl text-[40px] w-full lg:text-7xl font-medium text-balance text-center max-w-2xl tracking-tighter' > Ready to Find Your Perfect Repo?</ h2 >
19- < p className = "text-center tracking-tight lg:text-2xl font-light" > Join 8,500 + engineers accelerating in open-source.</ p >
19+ < p className = "text-center tracking-tight lg:text-2xl font-light" > Join 10,000 + engineers accelerating in open-source.</ p >
2020 </ div >
2121 < Link href = '/dashboard/home' className = 'cursor-pointer z-30' >
2222 < PrimaryButtom >
Original file line number Diff line number Diff line change @@ -71,6 +71,14 @@ const Footer = () => {
7171 >
7272 Blogs
7373 </ Link >
74+ < Link
75+ href = "https://github.com/apsinghdev/opensox/graphs/contributors"
76+ target = "_blank"
77+ rel = "noopener noreferrer"
78+ className = "text-[#b1b1b1] hover:text-white transition-colors text-xs"
79+ >
80+ Team
81+ </ Link >
7482 { /* <Link
7583 href="#"
7684 className="text-[#b1b1b1] hover:text-white transition-colors text-xs"
Original file line number Diff line number Diff line change @@ -13,6 +13,18 @@ export interface BlogPost {
1313}
1414
1515export const blogs : BlogPost [ ] = [
16+ {
17+ date : "07-12-25" ,
18+ linkText : "why should you open source ur project?" ,
19+ link : "https://x.com/ajeetunc/status/1997556803123712428?s=20" ,
20+ tag : "engineering" ,
21+ } ,
22+ {
23+ date : "06-12-25" ,
24+ linkText : 'why opensox ai doesn\'t do "follow-ups"?' ,
25+ link : "https://x.com/ajeetunc/status/1997309049910730995?s=20" ,
26+ tag : "startup" ,
27+ } ,
1628 {
1729 date : "24-08-25" ,
1830 linkText : "how to build an online presence?" ,
Original file line number Diff line number Diff line change 1515 "moduleResolution" : " bundler" ,
1616 "resolveJsonModule" : true ,
1717 "isolatedModules" : true ,
18- "jsx" : " preserve " ,
18+ "jsx" : " react-jsx " ,
1919 "incremental" : true ,
2020 "plugins" : [
2121 {
4040 " **/*.ts" ,
4141 " **/*.tsx" ,
4242 " .next/types/**/*.ts" ,
43- " types/**/*"
43+ " types/**/*" ,
44+ " .next/dev/types/**/*.ts"
4445 ],
45- "exclude" : [" node_modules" , " ../api/node_modules" ]
46+ "exclude" : [
47+ " node_modules" ,
48+ " ../api/node_modules"
49+ ]
4650}
Original file line number Diff line number Diff line change 1+ declare module "sanitize-html" {
2+ export interface IOptions {
3+ allowedTags ?: string [ ] ;
4+ allowedAttributes ?: Record < string , string [ ] > ;
5+ allowedSchemes ?: string [ ] ;
6+ [ key : string ] : any ;
7+ }
8+
9+ function sanitizeHtml ( dirty : string , options ?: IOptions ) : string ;
10+ export default sanitizeHtml ;
11+ }
12+
You can’t perform that action at this time.
0 commit comments