diff --git a/src/app/(user)/profile/[uid]/BusinessProfile.tsx b/src/app/(user)/profile/[uid]/BusinessProfile.tsx index 74d20f8..369aef8 100644 --- a/src/app/(user)/profile/[uid]/BusinessProfile.tsx +++ b/src/app/(user)/profile/[uid]/BusinessProfile.tsx @@ -34,18 +34,20 @@ export const BusinessProfile = async ({ userId }: { userId: string }) => { return (
- +
{data.business_name} - {data.business_type} + + {data.business_type} +
-

+

Location: {data.location}

-

+

Joined on: {new Date(data.joined_date).toLocaleDateString()}

@@ -55,16 +57,16 @@ export const BusinessProfile = async ({ userId }: { userId: string }) => {
-

Business ID:

-

{data.business_id}

+

Business ID:

+

{data.business_id}

-

Business Type:

-

{data.business_type}

+

Business Type:

+

{data.business_type}

-

User ID:

-

{data.user_id}

+

User ID:

+

{data.user_id}

diff --git a/src/app/(user)/profile/[uid]/ProjectProfile.tsx b/src/app/(user)/profile/[uid]/ProjectProfile.tsx index b2da0d5..6cd20e2 100644 --- a/src/app/(user)/profile/[uid]/ProjectProfile.tsx +++ b/src/app/(user)/profile/[uid]/ProjectProfile.tsx @@ -40,12 +40,12 @@ export const ProjectProfileSection = async ({ userId }: { userId: string }) => {
{data.map((project) => ( - +
{project.project_name} - + {project.project_short_description}