Skip to content

Commit

Permalink
Adiciona informações sobre tecnologias utilizadas nos projetos e atua…
Browse files Browse the repository at this point in the history
…liza dados do projeto AutoM8
  • Loading branch information
mdmjunior committed Feb 20, 2025
1 parent 2ccaae7 commit 8a9a46c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export default function Projects() {
description={d.description}
imgSrc={d.imgSrc}
href={d.href}
buildWith={d.buildWith}
/>
))}
</div>
Expand Down
3 changes: 2 additions & 1 deletion components/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from './Image'
import Link from './Link'

const Card = ({ title, description, imgSrc, href }) => (
const Card = ({ title, description, imgSrc, href, buildWith }) => (
<div className="md max-w-[544px] p-4 md:w-1/2">
<div
className={`${
Expand Down Expand Up @@ -39,6 +39,7 @@ const Card = ({ title, description, imgSrc, href }) => (
)}
</h2>
<p className="prose mb-3 max-w-none text-gray-500 dark:text-gray-400">{description}</p>
<p className="prose mb-3 max-w-none text-gray-500 dark:text-gray-400">{buildWith}</p>
{href && (
<Link
href={href}
Expand Down
6 changes: 5 additions & 1 deletion data/projectsData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ interface Project {
title: string
description: string
href?: string
repo?: string | null
imgSrc?: string
buildWith: string[]
}

const projectsData: Project[] = [
{
title: 'AutoM8',
description: `Under Development`,
imgSrc: '/static/images/AutoM8.png',
href: 'https://www.github.com/mdmjunior/AutoM8/',
href: 'https://www.marciomoreirajunior.com.br/Projects/AutoM8/',
repo: 'https://github.com/mdmjunior/AutoM8',
buildWith: ['Python', 'Shell script'],
},
]

Expand Down

0 comments on commit 8a9a46c

Please sign in to comment.