Compare commits

..

3 Commits

Author SHA1 Message Date
victorAnumudu b9bacea543 fixed font issue and btn style 2024-05-17 19:39:38 +01:00
victorAnumudu f23e179332 fixed font issue and btn style 2024-05-17 19:33:12 +01:00
ameye 96b1c8d6a6 Merge branch 'new-section-addition' of WrenchBoard/WrenchBoardMainSite into master 2024-05-17 17:52:36 +00:00
4 changed files with 10 additions and 12 deletions
+4 -1
View File
@@ -970,7 +970,7 @@ a {
color: #222; color: #222;
} }
.color-blue { .color-blue {
color: #2b70fa; color: #5086BA;
} }
.color-purple { .color-purple {
color: purple; color: purple;
@@ -981,6 +981,9 @@ a {
.border-purple { .border-purple {
border-color: purple; border-color: purple;
} }
.border-skyblue {
border-color: #5086BA;
}
/* black overlay */ /* black overlay */
[data-overlay] { [data-overlay] {
+1 -6
View File
@@ -172,11 +172,6 @@ p {
border-color: #2b70fa; border-color: #2b70fa;
color: #fff; color: #fff;
} }
.btn-get-started:hover {
color: purple;
opacity: .9;
transition: all .3s;
}
.appie-section-title { .appie-section-title {
padding-bottom: 25px; padding-bottom: 25px;
@@ -3255,7 +3250,7 @@ p {
/* .modern_ui_section{ /* .modern_ui_section{
margin-top: 100px; margin-top: 100px;
} */ } */
.modern_ui_section .section_sub_title{ .modern_ui_section .section_sub_title, .title .section_sub_title{
font-size: 30px; font-size: 30px;
color: purple; color: purple;
} }
+1 -1
View File
@@ -48,7 +48,7 @@ function Blogs({ pathname }) {
data-wow-delay="200ms" data-wow-delay="200ms"
> >
<Link to={`/blog/blogdetail/${blog?.id}`} className="thumb"> <Link to={`/blog/blogdetail/${blog?.id}`} className="thumb">
<img src={blgImg} alt={blog.post_title} style={{cursor: "pointer"}} width={370} height={278} loading="lazy" /> <img src={blgImg} alt={blog.post_title} width={370} height={'auto'} loading="lazy" />
</Link> </Link>
<div className="content"> <div className="content">
<div className="blog-meta"> <div className="blog-meta">
+4 -4
View File
@@ -6,16 +6,16 @@ export default function Right() {
<div className="appie-traffic-title section_title mb-0" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="100" style={{padding: '0'}}> <div className="appie-traffic-title section_title mb-0" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="100" style={{padding: '0'}}>
<h3 className='title text-center'>Assign Faster with</h3> <h3 className='title text-center'>Assign Faster with</h3>
<h3 className='title text-center d-flex justify-content-center flex-nowrap'> <h3 className='title text-center d-flex justify-content-center flex-nowrap'>
<div className='color-blue'>Wrench</div><div className='color-purple'>Agent</div> <div className='color-blue italic'>Wrench</div><div className='color-purple'>Agent</div>
</h3> </h3>
</div> </div>
<div className='p-2 w-100 bg-white my-2'>  <div className='p-2 w-100 bg-white my-2'> 
<div className='color-purple text-center'> <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-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> </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) => ( {list?.map((item, idx) => (
<div className="col-12 mb-20" key={idx}> <div className="col-12 mb-20" key={idx}>
<div <div
@@ -29,7 +29,7 @@ export default function Right() {
</div> </div>
))} ))}
<div className='w-100 d-flex justify-content-end'> <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> </div>
</div> </div>