1- ' use client'
1+ " use client" ;
22
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" ;
99
1010export default function LearnMorePage ( ) {
1111 return (
1212 < div className = "" >
1313 < Navbar1 />
1414 < 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
1718 className = "text-5xl font-bold text-center mb-8 text-white-800 dark:text-grey-300"
1819 initial = { { y : - 20 , opacity : 0 } }
1920 animate = { { y : 0 , opacity : 1 } }
@@ -24,25 +25,31 @@ export default function LearnMorePage() {
2425
2526 < TabContainer />
2627
27- < motion . div
28+ < motion . div
2829 className = "text-center bg-white/80 dark:bg-gray-800/80 backdrop-blur-sm rounded-lg p-8 shadow-lg mt-16"
2930 initial = { { y : 20 , opacity : 0 } }
3031 animate = { { y : 0 , opacity : 1 } }
3132 transition = { { delay : 0.4 , duration : 0.5 } }
3233 >
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 >
3541 < ShinyButton >
3642 < 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 >
4149 </ motion . div >
4250 </ div >
4351 </ div >
44- < Footer />
52+ < Footer />
4553 </ div >
46- )
54+ ) ;
4755}
48-
0 commit comments