@@ -10,12 +10,34 @@ export default function TypographyPage() {
1010 </ Head >
1111 < h1 className = "text-2xl font-semibold mb-6" > Typography</ h1 >
1212 < section className = "mb-8" >
13- < h2 className = "text-lg font-medium mb-3" > Font Families</ h2 >
14- < div className = "space-y-2" >
15- < div className = "text-sm text-gray-600" > Sans</ div >
16- < p style = { { fontFamily : typography . fontFamily . sans } } > The quick brown fox jumps over the lazy dog.</ p >
17- < div className = "text-sm text-gray-600 mt-4" > Mono</ div >
18- < p style = { { fontFamily : typography . fontFamily . mono } } > const lucky = true; // The quick brown fox</ p >
13+ < h2 className = "text-lg font-medium mb-3" > System Fonts</ h2 >
14+ < div className = "space-y-4" >
15+ < div >
16+ < div className = "text-sm text-gray-600 mb-1" > Sans (Primary)</ div >
17+ < p className = "text-gray-800" >
18+ Uses system default fonts for a native feel:
19+ < ul className = "list-disc pl-5 mt-1 space-y-1" >
20+ < li > San Francisco on Apple devices</ li >
21+ < li > Roboto on Android devices</ li >
22+ < li > System UI font on other platforms</ li >
23+ </ ul >
24+ </ p >
25+ < div className = "mt-3 p-3 bg-gray-50 rounded" >
26+ < p style = { { fontFamily : typography . fontFamily . sans } } className = "text-lg" >
27+ The quick brown fox jumps over the lazy dog.
28+ </ p >
29+ </ div >
30+ </ div >
31+
32+ < div className = "pt-4" >
33+ < div className = "text-sm text-gray-600 mb-1" > Monospace</ div >
34+ < p className = "text-gray-800 mb-2" > Used for code and technical content</ p >
35+ < div className = "p-3 bg-gray-50 rounded" >
36+ < p style = { { fontFamily : typography . fontFamily . mono } } className = "text-sm" >
37+ const lucky = true; // The quick brown fox
38+ </ p >
39+ </ div >
40+ </ div >
1941 </ div >
2042 </ section >
2143 < section >
0 commit comments