1
- ' use client'
1
+ " use client" ;
2
2
3
- import Link from ' next/link'
4
- import { motion } from ' framer-motion'
5
- import { TabContainer } from ' ./components/TabContainer'
6
- import Navbar1 from ' @/components/navbar'
7
- import Footer from ' @/components/footer'
8
- import ShinyButton from ' @/components/ui/shiny-button'
3
+ import Link from " next/link" ;
4
+ import { motion } from " framer-motion" ;
5
+ import { TabContainer } from " ./components/TabContainer" ;
6
+ import Navbar1 from " @/components/navbar" ;
7
+ import Footer from " @/components/footer" ;
8
+ import ShinyButton from " @/components/ui/shiny-button" ;
9
9
10
10
export default function LearnMorePage ( ) {
11
11
return (
12
12
< div className = "" >
13
13
< Navbar1 />
14
14
< div className = "min-h-screen bg-grey-500 bg-texture" >
15
- < div className = "container mx-auto px-32 py-16" >
16
- < motion . h1
15
+ < div className = "container mx-auto px-4 md:px-32 pb-16 pt-8 md:pt-16" >
16
+ { /* Changed the x-padding for small devices + reduced y-padding-top for small devices */ }
17
+ < motion . h1
17
18
className = "text-5xl font-bold text-center mb-8 text-white-800 dark:text-grey-300"
18
19
initial = { { y : - 20 , opacity : 0 } }
19
20
animate = { { y : 0 , opacity : 1 } }
@@ -24,25 +25,31 @@ export default function LearnMorePage() {
24
25
25
26
< TabContainer />
26
27
27
- < motion . div
28
+ < motion . div
28
29
className = "text-center bg-white/80 dark:bg-gray-800/80 backdrop-blur-sm rounded-lg p-8 shadow-lg mt-16"
29
30
initial = { { y : 20 , opacity : 0 } }
30
31
animate = { { y : 0 , opacity : 1 } }
31
32
transition = { { delay : 0.4 , duration : 0.5 } }
32
33
>
33
- < h2 className = "text-3xl font-bold mb-4 text-grey-800 dark:text-grey-300" > Want to Contribute ?</ h2 >
34
- < p className = "text-xl mb-8 text-grey-700 dark:text-grey-200" > Join hundreds of developers who have contributed to making LeetCode Journal better for everyone.</ p >
34
+ < h2 className = "text-3xl font-bold mb-4 text-grey-800 dark:text-grey-300" >
35
+ Want to Contribute ?
36
+ </ h2 >
37
+ < p className = "text-xl mb-8 text-grey-700 dark:text-grey-200" >
38
+ Join hundreds of developers who have contributed to making
39
+ LeetCode Journal better for everyone.
40
+ </ p >
35
41
< ShinyButton >
36
42
< Link
37
- href = 'https://github.com/yashksaini-coder/Leetcode-Journal'
38
- target = '_blank'
39
- > Contribute Now</ Link >
40
- </ ShinyButton >
43
+ href = "https://github.com/yashksaini-coder/Leetcode-Journal"
44
+ target = "_blank"
45
+ >
46
+ Contribute Now
47
+ </ Link >
48
+ </ ShinyButton >
41
49
</ motion . div >
42
50
</ div >
43
51
</ div >
44
- < Footer />
52
+ < Footer />
45
53
</ div >
46
- )
54
+ ) ;
47
55
}
48
-
0 commit comments