Skip to content

Commit e20dfbd

Browse files
authored
Merge pull request #91 from CapituloJaverianoACM/fix/about-us-alignment
Fix: about us alignment
2 parents 40d87e0 + 3c4ac25 commit e20dfbd

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/components/home/sections/about-us.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export function AboutUs() {
99
));
1010

1111
return (
12-
<div id="about-us" className="space-y-8 py-12">
13-
<div className="text-center px-4 sm:px-6 lg:px-40">
12+
<div id="about-us" className="space-y-8 pl-4 sm:pl-6 lg:pl-8 py-12">
13+
<div className="text-center max-w-7xl mx-auto px-4 sm:px-6 lg:px-40">
1414
<h1 className="dark:text-white">Sobre Nosotros</h1>
1515
<p className="text-xl dark:text-white/80">
1616
Somos una comunidad apasionada por la tecnología y la innovación,

src/components/league/ui/ranking-component.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,8 @@ const RankingList = ({
7777

7878
const [loading, setLoading] = useState<boolean>(true);
7979

80-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
8180
const [students, setStudents] = useState<Student[]>(
82-
Array.from({ length: SKELETON_RANKING_USERS_COUNT }).map((_) => ({
81+
Array.from({ length: SKELETON_RANKING_USERS_COUNT }).map(() => ({
8382
_id: "",
8483
avatar: "",
8584
level: LevelEnum.Initial,

0 commit comments

Comments
 (0)