diff --git a/src/Components/Project.jsx b/src/Components/Project.jsx index d46848d..b693627 100644 --- a/src/Components/Project.jsx +++ b/src/Components/Project.jsx @@ -16,7 +16,9 @@ export default function Project(props) { className=" w-fit px-6 py-4 font-normal whitespace-nowrap text-gray-500 dark:text-white" scope="row" > -

{props.projectName}

+

+ {props.projectName} +

{props.createdAt}

diff --git a/src/Components/ProjectTable.jsx b/src/Components/ProjectTable.jsx index 357114b..fcfd98d 100644 --- a/src/Components/ProjectTable.jsx +++ b/src/Components/ProjectTable.jsx @@ -56,7 +56,7 @@ export default function ProjectTable() { messages: [ { role: "user", - content: `I want to you to return a JSON object of an array named 'frontendProjects' of random, quick, beginner friendly frontend project ideas. ONLY return a JSON object. Please exclude any of these projects: Portfolio websites, Pomodoro timers, calculators, calendars or any of these: ${projects.map( + content: `I want to you to return a JSON object of an array named 'frontendProjects' of random, quick, beginner friendly frontend project ideas for my 100daysofcode challenege. ONLY return a JSON object. Please exclude any of these projects: Portfolio websites, Pomodoro timers, calculators, calendars or any of these: ${projects.map( (proj) => proj.name )}`, },