Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2f9102adb0 | |||
| 0aa0ac3976 | |||
| 5cae72c683 | |||
| 182e014d99 | |||
| e5627ad80e | |||
| 91863a624c | |||
| f12fa3dafd | |||
| 1bba20656e | |||
| 28d98a018a | |||
| 86293fb94f | |||
| 0738271f88 | |||
| ef20799f9c | |||
| c27e8a36b2 | |||
| 252bdeef67 | |||
| 278254809e | |||
| f0ff5657c3 | |||
| ac44c5b0a2 | |||
| 415aa1e369 | |||
| 174e2b992e | |||
| cf7ccf4eb1 | |||
| 3258f97bdc | |||
| 8a75eb4970 | |||
| 6c213fe6f8 |
@@ -2859,7 +2859,7 @@ p {
|
||||
.appie-features-tabs-btn .nav a {
|
||||
border-right: 3px solid #e8eaef;
|
||||
border-radius: 0;
|
||||
font-size: 15px;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
color: #505056;
|
||||
}
|
||||
@@ -8641,36 +8641,27 @@ LND PAGE STYLE STARTS HERE
|
||||
|
||||
/* -----------Interface_Section-Css-Start FOR HOME IMAGE SLIDERS ----------------- */
|
||||
/* interface wraper */
|
||||
.interface_section .screen_slider {
|
||||
/* .interface_section .screen_slider {
|
||||
margin-top: 35px;
|
||||
/* min-height: 520px; */
|
||||
min-height: 520px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
} */
|
||||
|
||||
.carousel-container{
|
||||
padding: 120px 0px 50px;
|
||||
}
|
||||
|
||||
/* interface images */
|
||||
.interface_section .owl-item .screen_frame_img img {
|
||||
.react-multi-carousel, .slick-slide{
|
||||
transform: scale(.9);
|
||||
/* border: 2px solid #000; */
|
||||
border-radius: 20px;
|
||||
transition: 1s all;
|
||||
transition: all 2s;
|
||||
/* border: 2px solid #000;
|
||||
margin: 0 auto;
|
||||
height: 520px;
|
||||
width: auto;
|
||||
width: auto; */
|
||||
}
|
||||
|
||||
.interface_section .owl-item.center .screen_frame_img img {
|
||||
.react-multi-carousel-item--active, .slick-center{
|
||||
transform: scale(1);
|
||||
/* border: 3px solid #000; */
|
||||
/* padding: 5px; */
|
||||
}
|
||||
|
||||
.carousel .slider {
|
||||
height: auto !important;
|
||||
width: 300px !important;
|
||||
transform: scale(.9);
|
||||
}
|
||||
|
||||
.carousel div {
|
||||
gap: 5px !important;
|
||||
transition: all 2s;
|
||||
}
|
||||
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 15 KiB |
@@ -30,7 +30,7 @@ function AfterHero() {
|
||||
Reward Accomplishments
|
||||
</h3>
|
||||
<p>
|
||||
Set goals, tasks, or anything that motivates or needs to be done and reward completion. WrenchBoard is the platform to plan rewards off pick your nose and blow
|
||||
On WrenchBoard, set goals, tasks, or anything else that motivates or needs to be done, and reward completion. WrenchBoard is the platform for planning rewards, engaging, and connecting with family.
|
||||
</p>
|
||||
<div className=''>
|
||||
<a className="mb-5 mb-md-0 main-btn" href={process.env.NEXT_PUBLIC_DASH_URL_LOGIN}>
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
"use client"
|
||||
// NOTE React-Slick and slick-carousel goes together. DO install both
|
||||
import React from 'react';
|
||||
import Slider from 'react-slick';
|
||||
import 'slick-carousel/slick/slick.css';
|
||||
import 'slick-carousel/slick/slick-theme.css';
|
||||
import Image from 'next/image'
|
||||
|
||||
export default function FeaturedScreenTwo() {
|
||||
const settings = {
|
||||
dots: true,
|
||||
autoplay: true,
|
||||
infinite: true,
|
||||
centerMode: true,
|
||||
|
||||
className: 'center',
|
||||
centerPadding: '60px',
|
||||
|
||||
slidesToShow: 5,
|
||||
slidesToScroll: 1,
|
||||
speed: 4000,
|
||||
// autoplaySpeed: 2000,
|
||||
cssEase: "linear",
|
||||
|
||||
responsive: [
|
||||
{
|
||||
breakpoint: 1024,
|
||||
settings: {
|
||||
slidesToShow: 5,
|
||||
slidesToScroll: 1,
|
||||
// initialSlide: 1,
|
||||
// infinite: true,
|
||||
// dots: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
breakpoint: 600,
|
||||
settings: {
|
||||
slidesToShow: 3,
|
||||
slidesToScroll: 1,
|
||||
},
|
||||
},
|
||||
{
|
||||
breakpoint: 480,
|
||||
settings: {
|
||||
slidesToShow: 1,
|
||||
slidesToScroll: 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
return (
|
||||
<div className='carousel-container'>
|
||||
<Slider
|
||||
{...settings}
|
||||
>
|
||||
{/* here you can also pass any other element attributes. Also, you can use your custom components as slides */}
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_1.png'} alt="image" />
|
||||
</div>
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_2.png'} alt="image" />
|
||||
</div>
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_3.png'} alt="image" />
|
||||
</div>
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_6.png'} alt="image" />
|
||||
</div>
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_4.png'} alt="image" />
|
||||
</div>
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_7.png'} alt="image" />
|
||||
</div>
|
||||
<div className='slider-img-con'>
|
||||
<img src={'/assets/images/slider/app_sliders/screen_5.png'} alt="image" />
|
||||
</div>
|
||||
</Slider>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -12,7 +12,7 @@ import AfterHero from './AfterHero';
|
||||
// import NextAfterHero from './NextAfterHero';
|
||||
import BackToTop from './BackToTop';
|
||||
import SelectFeatures from "@/app/components/SelectFeatutes";
|
||||
//import FeaturedScreenTwo from './FeaturedScreenTwo'
|
||||
// import FeaturedScreenTwo from './FeaturedScreenTwo'
|
||||
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ function HomeOne() {
|
||||
{/*<ServicesHomeOne />*/}
|
||||
<TrafficHomeOne />
|
||||
{/*<TrafficHomeTwo />*/}
|
||||
{/*<FeaturedScreenTwo /> olu temp */}
|
||||
{/*<FeaturedScreenTwo />*/}
|
||||
<BlogHomeOne />
|
||||
<FooterHomeOne />
|
||||
<BackToTop className='' />
|
||||
|
||||
@@ -4,13 +4,11 @@ import Image from 'next/image';
|
||||
|
||||
//import { Link } from 'react-router-dom';
|
||||
import thumb from '../assets/images/features-thumb-11.png';
|
||||
import shapeSix from '../assets/images/shape/shape-6.png';
|
||||
import shapeSeven from '../assets/images/shape/shape-7.png';
|
||||
import shapeEight from '../assets/images/shape/shape-8.png';
|
||||
import rewardIcon from '../assets/images/home/001-reward.png'
|
||||
import walletIcon from '../assets/images/home/004-wallet.png'
|
||||
import taskIcon from '../assets/images/home/002-task.png'
|
||||
import familyIcon from '../assets/images/home/003-family.png'
|
||||
|
||||
import rewardIcon from '../assets/images/home/circular-reward.png'
|
||||
import walletIcon from '../assets/images/home/circular-wallet.png'
|
||||
import taskIcon from '../assets/images/home/circular-task.png'
|
||||
import familyIcon from '../assets/images/home/circular-family.png'
|
||||
|
||||
function SelectFeatures({ className }) {
|
||||
const [tab, setTab] = useState('setting');
|
||||
@@ -116,7 +114,7 @@ function SelectFeatures({ className }) {
|
||||
Reward <br /> Achievement
|
||||
</h3>
|
||||
<p>
|
||||
Reward with points, badges, recognition, or money rewards with easy steps
|
||||
Reward with points, badges, recognition, or rewards with easy steps
|
||||
</p>
|
||||
<a className="main-btn" href="/about-us">
|
||||
Learn More
|
||||
|
||||
@@ -11,7 +11,7 @@ function TrafficHomeTwo() {
|
||||
<div className="appie-traffic-title">
|
||||
<h3 className="title">Family Connect</h3>
|
||||
<p>
|
||||
All you need for a family to get moving with rewards and more. Plan activities and booster family interactions.
|
||||
Looking for ways to keep your family active and engaged? We offer a variety of fun activities, challenges, and rewards to inspire and motivate your loved ones.
|
||||
</p>
|
||||
</div>
|
||||
<div className="row">
|
||||
@@ -21,7 +21,7 @@ function TrafficHomeTwo() {
|
||||
<i className="fal fa-check" />
|
||||
</div>
|
||||
<h5 className="title">Organize Chores</h5>
|
||||
<p>Simple one-time tasks to repeated tasks or promise of performance or set goals.</p>
|
||||
<p>Whether is one-time or reoccuring task, make chores fun and exciting again for kids.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-6">
|
||||
@@ -29,8 +29,8 @@ function TrafficHomeTwo() {
|
||||
<div className="icon">
|
||||
<i className="fal fa-check" />
|
||||
</div>
|
||||
<h5 className="title">Sibling Activities</h5>
|
||||
<p>Wrenchboard allows family members to create product connections with educational content with reward tools.
|
||||
<h5 className="title">Challenge Zone</h5>
|
||||
<p>Discover exciting challenges, rewards, and friendly competition to keep your kids and whole family engaged.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -48,14 +48,14 @@ function TrafficHomeTwo() {
|
||||
<div className="icon">
|
||||
<i className="fal fa-check" />
|
||||
</div>
|
||||
<h5 className="title">Games & More </h5>
|
||||
<p>More opportunities to learn with games or the artificial intelligence library and shared material.</p>
|
||||
<h5 className="title">Play and Learn</h5>
|
||||
<p>Discover a world of learning opportunities, from games to cutting-edge AI tools and our vast resource library.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-12">
|
||||
<div className="traffic-btn mt-50">
|
||||
<a className="main-btn" href="#">
|
||||
Learn more about what you can do with WrenchBoard <i className="fal fa-arrow-right" />
|
||||
<a className="main-btn" href={process.env.NEXT_PUBLIC_DASH_URL_LOGIN}>
|
||||
Join us today and start creating lasting memories together <i className="fal fa-arrow-right" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -135,9 +135,9 @@ COPY . /app
|
||||
|
||||
# start app
|
||||
#CMD ["serve", "-s", "build"]
|
||||
CMD ["npm", "run", "dev"]
|
||||
#CMD ["npm", "run", "dev"]
|
||||
|
||||
#RUN npm run build
|
||||
#CMD ["npm", "run", "start"]
|
||||
# CMD ["sh", "-c", "next build && next start"]
|
||||
CMD ["sh", "-c", "next build && next start"]
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 16 KiB |