Skip to content

Commit

Permalink
Removed Stars Background causing performance issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LuaanNguyen committed Sep 4, 2024
1 parent b0bbadb commit 08533a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import Blog from "../components/Blog";
function Home() {
return (
<main className="home area">
{/* <ShootingStars minDelay={1000} maxSpeed={20} starWidth={40} />
<StarsBackground starDensity={0.0009} /> */}
<Hero />
<AboutUs />
<SponsorsMarquee />
<MemberCards contacts={contactsData as Contacts} />
<Blog />
<InfoCards />
{/* <ShootingStars minDelay={1000} maxSpeed={20} starWidth={40} />
<StarsBackground starDensity={0.0009} /> */}
</main>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Mentorship.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Mentees will work on projects with their mentors, including:

export default function Mentorship() {
return (
<div className="max-w-4xl mx-auto p-6 mt-20 shadow-md rounded-lg">
<div className="max-w-5xl mx-auto p-6 mt-20 shadow-md rounded-lg">
<h1 className="section-header-text">Mentorship Program 🧑‍🏫</h1>
<ReactMarkdown
children={markdownContent}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/PointsSystem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Members can earn points through various activities such as attending meetings, p

export default function PointsSystem() {
return (
<div className="max-w-4xl mx-auto p-6 mt-20 shadow-md rounded-lg">
<div className="max-w-5xl mx-auto p-6 my-20 shadow-md rounded-lg">
<h1 className="section-header-text">Points System 🎯</h1>
<ReactMarkdown
children={markdownContent}
Expand Down

0 comments on commit 08533a5

Please sign in to comment.