Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-salgado committed Jan 26, 2025
1 parent d9e7a97 commit 3127a91
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions apps/mentor-platform/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@ import type { MetaFunction } from '@remix-run/node';
export const meta: MetaFunction = () => {
return [
{ title: 'ColorStack Mentor Platform' },
{ name: 'description', content: 'Welcome to the ColorStack Mentor Platform!' },
{
name: 'description',
content: 'Welcome to the ColorStack Mentor Platform!',
},
];
};

export default function Index() {
return (
<div className="flex min-h-screen flex-col items-center justify-center p-4">
<h1 className="mb-4 text-4xl font-bold">Welcome to ColorStack Mentor Platform</h1>
<h1 className="mb-4 text-4xl font-bold">
Welcome to ColorStack Mentor Platform
</h1>
<p className="text-lg text-gray-600">
Connect with mentors and grow your career in tech.
</p>
</div>
);
}
}

0 comments on commit 3127a91

Please sign in to comment.