Skip to content

Commit

Permalink
Fix deployment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shiro102 committed Jan 19, 2025
1 parent 8413c69 commit 2189222
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/[locale]/(Home)/about/_components/MemberDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const MemberDescription = ({ title, descriptions }: MemberDescriptionProps) => {
return (
<div className="my-auto flex basis-1/2 flex-col gap-y-8 text-[20px] font-light">
<h1 className="text-2xl font-bold tracking-widest">{title}</h1>
{descriptions.map((description) => (
<p className="tracking-wide text-gray-700">{description}</p>
{descriptions.map((description, index) => (
<p className="tracking-wide text-gray-700" key={index} >{description}</p>
))}
</div>
)
Expand Down
1 change: 0 additions & 1 deletion app/[locale]/(Home)/about/_components/OrgMemberCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Image from 'next/image'
import MemberDescription from './MemberDescription'
import MemberImage from './MemberImage'

Expand Down
1 change: 0 additions & 1 deletion app/[locale]/(Home)/about/_components/OrgMembers.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Image from 'next/image'
import React from 'react'
import OrgMemberCard from './OrgMemberCard'

Expand Down
3 changes: 2 additions & 1 deletion app/[locale]/(Home)/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import OrgSummary from './_components/OrgSummary'
import OrgMembers from './_components/OrgMembers'

const AboutPage = () => {
return (
<div className="h-full w-full">
{/* <OrgSummary /> */}
<OrgSummary />
<OrgMembers />
</div>
)
Expand Down

0 comments on commit 2189222

Please sign in to comment.