File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414 GraduationCapIcon ,
1515 HeartIcon ,
1616 StarIcon ,
17- UsersIcon
17+ UsersIcon ,
1818} from "lucide-react" ;
1919import { motion } from "motion/react" ;
2020import Link from "next/link" ;
@@ -142,7 +142,7 @@ export default function AboutPage() {
142142 >
143143 Our platform bridges complex Java concepts with real-world
144144 application through interactive tutorials, hands-on exercises, and
145- structured learning paths. Whether you' re a complete beginner or
145+ structured learning paths. Whether you' re a complete beginner or
146146 experienced developer, our community-driven approach ensures
147147 accessible, practical learning for everyone.
148148 </ motion . p >
@@ -183,7 +183,7 @@ export default function AboutPage() {
183183 </ motion . div >
184184
185185 < motion . div
186- className = "flex justify-center col-span-1"
186+ className = "col-span-1 flex justify-center "
187187 variants = { ANIMATION_VARIANTS . imageFromLeft }
188188 >
189189 < motion . div
@@ -194,7 +194,7 @@ export default function AboutPage() {
194194 < img
195195 src = "/mission.svg"
196196 alt = "Javaistic Learning Platform - Free Java Programming Education"
197- className = "relative z-10 h-80 w-80 aspect-square rounded-full border-2 border-white/20 bg-white object-cover shadow-2xl transition-transform duration-300 dark:border-neutral-800 dark:bg-neutral-900"
197+ className = "relative z-10 aspect-square h-80 w-80 rounded-full border-2 border-white/20 bg-white object-cover shadow-2xl transition-transform duration-300 dark:border-neutral-800 dark:bg-neutral-900"
198198 />
199199 </ motion . div >
200200 </ motion . div >
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ export default function SiteLayout({ children }: { children: ReactNode }) {
137137 < ComponentIcon className = "bg-fd-primary text-fd-primary-foreground mb-2 rounded-md p-1" />
138138 < p className = "font-medium" > Data Types & Variables </ p >
139139 < p className = "text-fd-muted-foreground text-sm" >
140- Understand Java' s primitive data types and variable
140+ Understand Java' s primitive data types and variable
141141 declarations.
142142 </ p >
143143 </ NavbarMenuLink >
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ export default function SponsorsPage() {
261261 < h3 className = "text-lg font-semibold" > Growing Platform</ h3 >
262262 </ div >
263263 < p className = "text-muted-foreground" >
264- Support a platform that' s helping developers learn and grow in the
264+ Support a platform that' s helping developers learn and grow in the
265265 Java ecosystem.
266266 </ p >
267267 < div className = "mt-3 text-xs font-medium text-purple-600 dark:text-purple-400" >
Original file line number Diff line number Diff line change @@ -124,7 +124,6 @@ export const useGitHubStats = (): UseGitHubStatsReturn => {
124124
125125 // Check rate limit headers proactively
126126 const remaining = response . headers . get ( "X-RateLimit-Remaining" ) ;
127- const resetTime = response . headers . get ( "X-RateLimit-Reset" ) ;
128127
129128 if ( remaining && parseInt ( remaining ) < 5 ) {
130129 console . warn (
You can’t perform that action at this time.
0 commit comments