Skip to content
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

fix: add auto margins #11

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/programs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ export default function program() {
};

return (
<div>
<section className="mx-4 ">
<div className="flex">
<section className="mx-auto">
<div className="container flex flex-col items-center gap-4 text-center">
<h1 className="tracking-tight font-semibold text-2xl sm:text-5xl md:text-6xl lg:text-5xl mb-4 dark:text-white">
Opensource Programs List
</h1>
<p className="max-w-[42rem] leading-normal dark:text-white text-muted-foreground sm:text-xl sm:leading-8">
Discover a curated collection of diverse open source programs. Filter based on stipend availability and find opportunities that match your interests and skills.
</p>
</div>
<Filter onFilterChange={handleFilterChange} />
</section>
<Programs filter_option={filterOption} />
</div>
</section>
</div>
);
}
Expand Down Expand Up @@ -90,4 +90,4 @@ function Filter({ onFilterChange }: { onFilterChange: (newOption: "" | "Yes" | "
</Dialog>
</div>
);
}
}