-
-
Notifications
You must be signed in to change notification settings - Fork 375
Cleanup about tailwind classes #580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1a22c5a
b9868c9
96e562b
0757c9a
b39b241
b11c104
26fb61d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| export const orgStats = { | ||
| activeProjects: 34, | ||
| totalContributors: 500, | ||
| communityCount: 3800, | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,6 +5,7 @@ import { Container } from '@/components/Container'; | |||||||||||||
| import { Banner } from '@/components/Banner'; | ||||||||||||||
| import React from 'react'; | ||||||||||||||
| import { Line } from 'react-chartjs-2'; | ||||||||||||||
| import { orgStats } from '@/config/orgStats' | ||||||||||||||
| import { Chart as ChartJS, LineElement, CategoryScale, LinearScale, PointElement } from 'chart.js'; | ||||||||||||||
|
|
||||||||||||||
| ChartJS.register(LineElement, CategoryScale, LinearScale, PointElement); | ||||||||||||||
|
|
@@ -143,26 +144,32 @@ export default function About() { | |||||||||||||
| </Head> | ||||||||||||||
|
|
||||||||||||||
| <section style={styles.section}> | ||||||||||||||
| <h1 style={{ marginBottom: '20px' }} className="font-mono text-6xl font-extrabold tracking-tighter text-[#32a852] dark:text-yellow-400 sm:text-6xl md:text-5xl lg:text-6xl"> | ||||||||||||||
| <h1 style={{ marginBottom: '20px' }} className="font-mono font-extrabold tracking-tighter text-[#32a852] dark:text-yellow-400 md:text-5xl lg:text-6xl"> | ||||||||||||||
| ABOUT | ||||||||||||||
| </h1> | ||||||||||||||
|
Comment on lines
+147
to
149
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing base font-size class for the ABOUT heading on small screens. With Tailwind's preflight, Proposed fix- <h1 style={{ marginBottom: '20px' }} className="font-mono font-extrabold tracking-tighter text-[`#32a852`] dark:text-yellow-400 md:text-5xl lg:text-6xl">
+ <h1 style={{ marginBottom: '20px' }} className="font-mono font-extrabold tracking-tighter text-[`#32a852`] dark:text-yellow-400 text-3xl md:text-5xl lg:text-6xl">📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
| <p className="text-zinc-600 dark:text-zinc-400 text-lg font-mono leading-7"> | ||||||||||||||
| Our Projects, where we showcase our tech wizardry and code-slinging skills!! Be a part of our community and | ||||||||||||||
| contribute to meaningful projects that are <span className="text-green-600 dark:text-yellow-400 text-lg font-mono leading-7 font-bold">making a difference</span>. Explore | ||||||||||||||
| contribute to meaningful projects that are <span className="text-green-600 dark:text-yellow-400 font-bold">making a difference</span>. Explore | ||||||||||||||
| our selection of projects and find the perfect opportunity to showcase your skills and{' '} | ||||||||||||||
| <span className="text-green-600 dark:text-yellow-400 text-lg font-mono leading-7 font-bold">make an impact</span>. | ||||||||||||||
| <span className="text-green-600 dark:text-yellow-400 font-bold">make an impact</span>. | ||||||||||||||
| </p> | ||||||||||||||
| <div style={styles.stats}> | ||||||||||||||
| <div className="text-green-600 dark:text-zinc-400 text-lg font-mono leading-7 font-bold"> | ||||||||||||||
| <h2 style={styles.statNumber}>34+</h2> | ||||||||||||||
| <h2 style={styles.statNumber}> | ||||||||||||||
| {orgStats.activeProjects}+ | ||||||||||||||
| </h2> | ||||||||||||||
| <p style={styles.statLabel}>Active Projects</p> | ||||||||||||||
| </div> | ||||||||||||||
| <div className="text-green-600 dark:text-zinc-400 text-lg font-mono leading-7 font-bold"> | ||||||||||||||
| <h2 style={styles.statNumber}>500+</h2> | ||||||||||||||
| <h2 style={styles.statNumber}> | ||||||||||||||
| {orgStats.totalContributors}+ | ||||||||||||||
| </h2> | ||||||||||||||
| <p style={styles.statLabel}>Total Contributors</p> | ||||||||||||||
| </div> | ||||||||||||||
| <div className="text-green-600 dark:text-zinc-400 text-lg font-mono leading-7 font-bold"> | ||||||||||||||
| <h2 style={styles.statNumber}>3800+</h2> | ||||||||||||||
| <h2 style={styles.statNumber}> | ||||||||||||||
| {orgStats.communityCount}+ | ||||||||||||||
| </h2> | ||||||||||||||
| <p style={styles.statLabel}>Community Count</p> | ||||||||||||||
| </div> | ||||||||||||||
| </div> | ||||||||||||||
|
|
@@ -179,7 +186,7 @@ export default function About() { | |||||||||||||
| }} | ||||||||||||||
| > | ||||||||||||||
| <div className='m-3 w-[60px] h-[60px] bg-cover bg-[url("/contribution.png")] dark:bg-[url("/contribution-dark.png")]'></div> | ||||||||||||||
| <h1 className="font-mono text-2xl md:text-6xl font-extrabold tracking-tighter text-[#32a852] dark:text-yellow-400 sm:text-6xl md:text-5xl lg:text-6xl"> | ||||||||||||||
| <h1 className="font-mono font-extrabold tracking-tighter text-[#32a852] dark:text-yellow-400 text-2xl sm:text-6xl"> | ||||||||||||||
| GSOC CONTRIBUTION | ||||||||||||||
| </h1> | ||||||||||||||
| </div> | ||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copyright year is outdated.
The copyright reads "2016-2025" but the current year is 2026. Consider updating to "2016-2026" or dynamically generating the end year.
🤖 Prompt for AI Agents