Skip to content

Commit ab3b90c

Browse files
committed
Merge branch 'main' of github.com:deveshru2712/opensox into fix/fix-nav-on-medium-width-devices
2 parents 414acfa + 758fde9 commit ab3b90c

File tree

11 files changed

+1433
-1051
lines changed

11 files changed

+1433
-1051
lines changed

apps/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
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",

apps/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
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",
@@ -53,7 +53,7 @@
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",

apps/web/src/app/(main)/(landing)/layout.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import Navbar from '@/components/landing-sections/navbar'
21
import React from 'react'
32

43
const Layout = ({ children }: { children: React.ReactNode }) => {
54
return (
65
<section>
7-
<Navbar />
86
{children}
97
</section>
108
)

apps/web/src/app/(main)/dashboard/pro/dashboard/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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&apos;ll see all the pro perks here. thanks for investing
109+
soon you&apos;ll see all the pro perks here. thanks for investin!
110110
</h1>
111111
{isPaidUser && (
112112
<div className="mt-6">

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

apps/web/src/data/blogs.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ export interface BlogPost {
1313
}
1414

1515
export 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?",

apps/web/tailwind.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ const config: Config = {
7272
warning: colors.status.warning,
7373
info: colors.status.info,
7474

75+
// External brand colors
76+
github: {
77+
bg: colors.external.github.bg,
78+
hover: colors.external.github.hover,
79+
border: colors.external.github.border,
80+
},
81+
7582
// Legacy ox-* colors (for gradual migration) - will be deprecated
7683
"ox-purple": colors.brand.purple.DEFAULT,
7784
"ox-purple-2": colors.brand.purple.dark,

apps/web/tsconfig.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@
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
}

apps/web/types/sanitize-html.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+

0 commit comments

Comments
 (0)