Compare commits

..

6 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
victorAnumudu 3cc45e39b3 added new section 2024-05-17 18:49:03 +01:00
victorAnumudu 43f858243f added new section 2024-05-17 18:46:29 +01:00
ameye 90cfa7541c Merge branch 'slider-addition' of WrenchBoard/WrenchBoardMainSite into master 2024-05-16 17:02:50 +00:00
6 changed files with 154 additions and 45 deletions
+85 -3
View File
@@ -1,12 +1,79 @@
/* Deafult Margin & Padding */
/*-- Margin Top --*/
.height-50 {
height: 50px;
}
.height-100 {
height: 100px;
}
.height-150 {
height: 150px;
}
.height-200 {
height: 200px;
}
.italic {
font-style: italic;
}
a {
text-decoration: none;
text-decoration: none;
background-color: transparent;
}
.expire{
color:red;
}
.border-normal {
border: 2px solid black
}
.border-thin{
border: 4px solid black
}
.border-r-5 {
border-radius: 5px;
}
.border-r-10 {
border-radius: 10px;
}
/* Default Width sizes */
/*-- Width Sizes --*/
.custom-w-80 {
width: 80%;
}
.custom-w-90 {
width: 90%;
}
/* Default Font sizes */
/*-- Font Sizes --*/
.font-10 {
font-size: 10px;
}
.font-16 {
font-size: 16px;
}
.font-20 {
font-size: 20px;
}
.font-25 {
font-size: 25px;
}
.font-30 {
font-size: 30px;
}
.font-35 {
font-size: 35px;
}
.font-40 {
font-size: 40px;
}
.font-45 {
font-size: 45px;
}
/* Deafult Margin & Padding */
/*-- Margin Top --*/
.mt-5 {
margin-top: 5px;
}
@@ -902,6 +969,21 @@ a {
.black {
color: #222;
}
.color-blue {
color: #5086BA;
}
.color-purple {
color: purple;
}
.bg-purple {
color: purple;
}
.border-purple {
border-color: purple;
}
.border-skyblue {
border-color: #5086BA;
}
/* black overlay */
[data-overlay] {
+14 -8
View File
@@ -3170,13 +3170,19 @@ p {
}
}
.appie-traffic-service {
.appie-traffic-service, .appie-traffic-service-two {
position: relative;
}
.appie-traffic-service {
padding-left: 40px;
padding-right: 70px;
}
.appie-traffic-service-two {
padding-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.appie-traffic-service {
.appie-traffic-service, .appie-traffic-service-two {
padding-right: 0;
}
}
@@ -3192,12 +3198,12 @@ p {
padding-right: 0px;
}
}
.appie-traffic-service .icon {
.appie-traffic-service .icon, .appie-traffic-service-two .icon {
position: absolute;
left: 0;
top: 5px;
top: 0;
}
.appie-traffic-service .icon i {
.appie-traffic-service .icon i, .appie-traffic-service-two .icon i {
height: 26px;
width: 26px;
text-align: center;
@@ -3208,13 +3214,13 @@ p {
font-size: 14px;
box-shadow: 0px 6px 10px 0px rgba(16, 73, 189, 0.3);
}
.appie-traffic-service .title {
.appie-traffic-service .title, .appie-traffic-service-two title {
font-size: 24px;
font-weight: 700;
padding-bottom: 7px;
text-shadow: 3px 4px 10px rgba(0,0,0,0.3);
}
.appie-traffic-service p {
.appie-traffic-service p, .appie-traffic-service-two p {
font-size: 17px;
margin-top: 10px;
/*margin-bottom: 2px;*/
@@ -3244,7 +3250,7 @@ p {
/* .modern_ui_section{
margin-top: 100px;
} */
.modern_ui_section .section_sub_title{
.modern_ui_section .section_sub_title, .title .section_sub_title{
font-size: 30px;
color: purple;
}
+1 -25
View File
@@ -28,31 +28,7 @@ function ServicesHomeOne({ className }) {
<section
className={`appie-service-area pt-50 pb-50 ${className}`}
id="service"
>
{/* <div className="container">
<div className="row justify-content-center">
<div className="col-lg-8">
<div className="appie-section-title text-center">
<h3 className="appie-title">
Set Chores, Set Goals and <br /> Rewards Accomplishments
</h3>
</div>
</div>
</div>
<div className="row">
{serviceItems.map(({ icon, title, description }, index) => (
<div key={index} className="col-lg-3 col-md-6">
<ServiceItem
icon={icon}
title={title}
description={description}
index={index}
/>
</div>
))}
</div>
</div> */}
>
<Main />
</section>
);
+1 -1
View File
@@ -48,7 +48,7 @@ function Blogs({ pathname }) {
data-wow-delay="200ms"
>
<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>
<div className="content">
<div className="blog-meta">
+7 -8
View File
@@ -5,6 +5,7 @@ import img1 from '../../../../assets/images/modern01.png'
import img2 from '../../../../assets/images/secure_data.png'
import img3 from '../../../../assets/images/modern02.png'
import img4 from '../../../../assets/images/modern03.png'
import Right from './Right'
const Main = ({gredient}) => {
@@ -17,16 +18,16 @@ const Main = ({gredient}) => {
return (
<>
<section className={`row_am modern_ui_section ${gredient && "gredient-bg"}`} >
<section className={`row_am ${gredient && "gredient-bg"}`} >
{gredient &&
<div className="modernui_section_bg modernui-gredient">
<img src="assets/images/section-bg.png" alt="image"/>
</div>
}
<div className="container">
<div className="row align-items-center">
<div className="row">
<div className="col-lg-6">
<div className="ui_text w-100">
<div className="w-100">
<div className="appie-traffic-title section_title" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="100" style={{padding: '0'}}>
<h3 className='title'>Set Chores, Set Goals <div className='section_sub_title'>Rewards Accomplishments</div></h3>
<p className=''>
@@ -38,7 +39,6 @@ const Main = ({gredient}) => {
<div className="col-12 mb-20" key={idx} onClick={()=>changeActiveImg(name)} style={{cursor: 'pointer'}}>
<div
className={`appie-traffic-service features appie-modern-design`}
style={{ paddingRight: "45px" }}
>
<div className="icon">
<i className={icon} />
@@ -52,7 +52,7 @@ const Main = ({gredient}) => {
</div>
</div>
<div className="col-lg-6">
<div className='w-100 ui_image_con d-flex justify-content-center align-items-center'>
{/* <div className='w-100 ui_image_con d-flex justify-content-center align-items-center'>
<div className="ui_images position-relative d-flex justify-content-center align-items-center" data-aos="fade-in" data-aos-duration="1500">
<div className="left_img position-relative">
<img
@@ -65,10 +65,8 @@ const Main = ({gredient}) => {
</div>
<div className="right_img position-relative d-flex flex-column justify-content-start align-items-center">
<div className='d-flex flex-column justify-content-start align-items-center'>
{/* <img className="moving_position_animatin right_img_one" src={img2} alt="image" /> */}
<img
className="moving_position_animatin right_img_two"
// src={img3}
src={
activeImg == 'reward-goals' ? localImgLoad(`images/home/box-reward.png`)
:
@@ -90,7 +88,8 @@ const Main = ({gredient}) => {
/>
</div>
</div>
</div>
</div> */}
<Right />
</div>
</div>
</div>
@@ -0,0 +1,46 @@
import React from 'react'
export default function Right() {
return (
<div className="w-100">
<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 d-flex justify-content-center flex-nowrap'>
<div className='color-blue italic'>Wrench</div><div className='color-purple'>Agent</div>
</h3>
</div>
<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='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-skyblue">
{list?.map((item, idx) => (
<div className="col-12 mb-20" key={idx}>
<div
className={`appie-traffic-service-two features appie-modern-design`}
>
<div className="icon">
<i className='fal fa-check' />
</div>
<h5 className="title italic color-purple">{item}</h5>
</div>
</div>
))}
<div className='w-100 d-flex justify-content-end'>
<button className='main-btn'>Get Started</button>
</div>
</div>
</div>
)
}
const list = [
'Watering the plants and garden',
'Helping with meal preparation and cooking',
'Assisting with organizing and cleaning out a specific area of the house',
'Taking care of a pet, such as feeding, walking, and grooming'
]