File tree Expand file tree Collapse file tree 6 files changed +19
-12
lines changed Expand file tree Collapse file tree 6 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ const nextConfig: NextConfig = {
13
13
hostname : "lh3.googleusercontent.com" ,
14
14
pathname : "/**" ,
15
15
} ,
16
+ {
17
+ protocol : "https" ,
18
+ hostname : "aqdmihqntpulvkgwrmwb.supabase.co" ,
19
+ pathname : "/**" ,
20
+ } ,
16
21
] ,
17
22
} ,
18
23
} ;
Original file line number Diff line number Diff line change 16
16
"@react-spring/web" : " 9.7.5" ,
17
17
"@supabase/ssr" : " ^0.6.1" ,
18
18
"@supabase/supabase-js" : " ^2.49.4" ,
19
- "framer-motion" : " ^12.6.3" ,
19
+ "date-fns" : " ^4.1.0" ,
20
+ "framer-motion" : " ^12.10.5" ,
20
21
"lucide-react" : " 0.475.0" ,
21
22
"next" : " 15.2.5" ,
22
23
"next-themes" : " ^0.4.6" ,
23
24
"react" : " ^18.3.1" ,
24
25
"react-dom" : " ^18.3.1" ,
25
- "react-hook-form" : " ^7.56.1" ,
26
- "zod" : " ^3.24.3" ,
26
+ "react-hook-form" : " ^7.56.3" ,
27
+ "react-intersection-observer" : " ^9.16.0" ,
28
+ "zod" : " ^3.24.4" ,
27
29
"zustand" : " 5.0.3"
28
30
},
29
31
"devDependencies" : {
30
- "@eslint/eslintrc" : " ^3" ,
31
- "@types/node" : " ^20" ,
32
- "@types/react" : " ^19" ,
32
+ "@eslint/eslintrc" : " ^3.3.1 " ,
33
+ "@types/node" : " ^20.17.46 " ,
34
+ "@types/react" : " ^19.1.3 " ,
33
35
"@types/react-dom" : " ^19" ,
34
36
"autoprefixer" : " ^10.4.21" ,
35
- "eslint" : " ^9" ,
37
+ "eslint" : " ^9.26.0 " ,
36
38
"eslint-config-next" : " 15.2.5" ,
37
39
"postcss" : " ^8.5.3" ,
38
40
"tailwindcss" : " 3.4.17" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const metadata: Metadata = {
10
10
11
11
export default function BlogPage ( ) {
12
12
return (
13
- < main className = "max-w-screen-xl mx-auto p-4" >
13
+ < main className = "max-w-screen-xl mx-auto p-4 flex flex-col gap-4 " >
14
14
< Heading title = "Blog" subtitle = "Articles and posts" />
15
15
< p >
16
16
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae tenetur
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export default async function TrendingPage() {
15
15
if ( resources . length === 0 ) return < div > No resources found</ div > ;
16
16
17
17
return (
18
- < main className = "max-w-screen-xl mx-auto p-4" >
18
+ < main className = "max-w-screen-xl mx-auto p-4 flex flex-col gap-4 " >
19
19
< Heading
20
20
title = "Trending"
21
21
subtitle = "Trending resources among developers"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function Navbar() {
13
13
const { user } = useAuthUser ( ) ;
14
14
15
15
return (
16
- < nav className = "sticky top-0 z-20 flex items-center justify-between gap-2 px-4 py-4 bg-white dark:bg-neutral-950" >
16
+ < nav className = "sticky top-0 z-20 flex items-center justify-between gap-2 px-4 py-4 bg-white dark:bg-neutral-950 border-b-2 border-neutral-200 dark:border-neutral-800 " >
17
17
< div className = "flex items-center gap-4" >
18
18
< Button
19
19
isIconOnly
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ export default function Heading({
13
13
14
14
return (
15
15
< header className = "flex flex-col gap-2" >
16
- < HeadingTag className = "text-3xl md:text-4xl font-bold text-neutral-950 dark:text-white" >
16
+ < HeadingTag className = "text-3xl md:text-4xl font-bold tracking-tight text-neutral-950 dark:text-white" >
17
17
{ title }
18
18
</ HeadingTag >
19
- < p className = "text-neutral-500" > { subtitle } </ p >
19
+ < p className = "text-neutral-500 font-medium " > { subtitle } </ p >
20
20
</ header >
21
21
) ;
22
22
}
You can’t perform that action at this time.
0 commit comments