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

refactor: Fixed typos in about us page and made design css consistent #274

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
14 changes: 7 additions & 7 deletions pages/templates/ebraj/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ export const AboutHeroSection = () => {
const allStats = [
{
title: '2023',
description: 'Review App Journey Officially Started On',
description: 'Review app journey officially started in',
},
{
title: '50+',
description:
'Team member actively working on this project to make it better.',
'Team members actively working on this project to make it better.',
},
{
title: '100+',
Expand All @@ -52,17 +52,17 @@ const allStats = [
export const StatsSection = () => {
return (
<MaxWidthContainer className="relative z-10 pb-20">
<GridContainer className="divide-y-2 divide-dashed rounded-md bg-white p-5 py-8 text-sm ring-1 ring-gray-100 dark:bg-slate-800/20 dark:ring-slate-800/70 md:grid-cols-3 md:divide-x-2 md:divide-y-0">
<GridContainer className="divide-y-2 divide-dashed rounded-md bg-white p-5 py-8 text-sm ring-1 ring-gray-100 dark:bg-slate-800/20 dark:ring-slate-800/70 md:grid-cols-3 md:divide-x-2 md:divide-y-0">
{allStats.map((feature, index) => {
return (
<div
key={index}
className="flex h-full flex-col items-center justify-center space-y-5 text-center"
className="flex h-full flex-col items-center justify-center space-y-6 py-6 text-center"
>
<h3 className="pt-8 text-4xl font-bold sm:text-5xl md:text-6xl">
<h3 className="text-4xl font-bold sm:text-5xl md:text-6xl">
{feature.title}
</h3>
<p className="max-w-[80%] items-center pb-5 text-lg text-slate-500">
<p className="max-w-[80%] items-center text-lg text-slate-500">
{feature.description}
</p>
</div>
Expand Down Expand Up @@ -239,7 +239,7 @@ export const CommunityMembers = () => {

<div className="flex flex-wrap items-center justify-center gap-8 pt-20">
{allContributors &&
allContributors.map((single: ContributorsType, index: number) => {
allContributors.map((single: ContributorsType) => {
return (
<Link
href={single.html_url}
Expand Down
Loading