fixed font issue and btn style

This commit is contained in:
victorAnumudu
2024-05-17 19:33:12 +01:00
parent 96b1c8d6a6
commit f23e179332
4 changed files with 9 additions and 11 deletions
+3 -3
View File
@@ -12,10 +12,10 @@ export default function Right() {
<div className='p-2 w-100 bg-white my-2'> 
<div className='color-purple text-center'>
<h3 className='color-purple font-25 mb-10'>Ask our "WrenchAgent" Generative AI to assist</h3>
<h3 className='color-purple font-20 mb-10'>Recommend 4 summer chores for a 12 years old</h3>
<h3 className='font_black font-20 mb-10'>"Recommend 4 summer chores for a 12 years old"</h3>
</div>
</div>
<div className="p-2 bg-white custom-w-90 mx-auto border-thin border-r-10 border-purple">
<div className="p-2 bg-white custom-w-90 mx-auto border-thin border-r-10 border-skyblue">
{list?.map((item, idx) => (
<div className="col-12 mb-20" key={idx}>
<div
@@ -29,7 +29,7 @@ export default function Right() {
</div>
))}
<div className='w-100 d-flex justify-content-end'>
<button className='btn btn-get-started px-1 py-2 border-r-5 border-purple border-normal color-purple'>Get Started</button>
<button className='main-btn'>Get Started</button>
</div>
</div>
</div>