Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01eb545687 | |||
| deb89d1303 | |||
| 4fc97cdd2a | |||
| 74e8c36c48 | |||
| 62d4822f96 | |||
| 1673e45a9e | |||
| 2fb56cd9f4 | |||
| ed02d978f3 | |||
| 54dc33aa4d | |||
| 754c54fe28 | |||
| c79bc8a7d1 | |||
| 85b92a94d9 | |||
| 2894d6d25f | |||
| f86ab9bd2b | |||
| 2f9102adb0 | |||
| 0aa0ac3976 |
@@ -8664,4 +8664,4 @@ LND PAGE STYLE STARTS HERE
|
||||
.react-multi-carousel-item--active, .slick-center{
|
||||
transform: scale(1);
|
||||
transition: all 2s;
|
||||
}
|
||||
}
|
||||
|
||||
|
After Width: | Height: | Size: 28 KiB |
@@ -0,0 +1,36 @@
|
||||
"use client"
|
||||
import React, { useEffect, useState } from 'react'
|
||||
import Cookies from 'js-cookie'
|
||||
|
||||
export default function AcceptCookies() {
|
||||
const [cookies, setCookies] = useState(true)
|
||||
|
||||
const acceptCookies = () => {
|
||||
Cookies.set('useCookies', 'true')
|
||||
setCookies(true)
|
||||
}
|
||||
|
||||
useEffect(()=>{
|
||||
const useCookies = Cookies.get('useCookies')
|
||||
if(useCookies == 'true'){
|
||||
setCookies(true)
|
||||
}else{
|
||||
setCookies(false)
|
||||
}
|
||||
},[])
|
||||
|
||||
return (
|
||||
<>
|
||||
{/* {cookies ?
|
||||
<></>
|
||||
: */}
|
||||
<div className={`${cookies ? 'slide-down' : 'slide-up'} cookies-wrapper position-fixed d-lg-flex justify-content-center align-items-center gap-5 p-2`}>
|
||||
<p className='m-0'>
|
||||
This website uses cookies to provide you the best experience possible, as well as for tracking performance and marketing purposes. You can check our privacy policy for more information. By clicking ❛❛Confirm❜❜ or by continuing to use our website, you consent to our use of cookies.
|
||||
</p>
|
||||
<button onClick={acceptCookies} className='px-5 py-2'>Accept</button>
|
||||
</div>
|
||||
{/* } */}
|
||||
</>
|
||||
)
|
||||
}
|
||||
@@ -3,7 +3,7 @@ import React from 'react';
|
||||
import Image from 'next/image'
|
||||
|
||||
import heroThumbTwo from '../assets/images/app-pic.png';
|
||||
import AI from '../assets/images/home/ai-assist.png'
|
||||
import AI from '../assets/images/home/ai-assisted.png'
|
||||
|
||||
import CustomSlider from './customSlider/CustomSlider'
|
||||
|
||||
@@ -76,8 +76,8 @@ function HeroHomeOne() {
|
||||
>
|
||||
<Image
|
||||
src={AI}
|
||||
width={'100%'}
|
||||
height={'100%'}
|
||||
width={'150'}
|
||||
height={'150'}
|
||||
alt="Image"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -16,7 +16,6 @@ import SelectFeatures from "@/app/components/SelectFeatutes";
|
||||
|
||||
|
||||
|
||||
|
||||
function HomeOne() {
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -231,7 +231,7 @@ function SelectFeatures({ className }) {
|
||||
Fund <br /> wallets
|
||||
</h3>
|
||||
<p>
|
||||
Take control and feel secure by creating a virtual or physical card, allocating funds, and managing wallets for your kids. .
|
||||
Take control and feel secure by creating a virtual or physical card, allocating funds, and managing wallets for your kids.
|
||||
</p>
|
||||
<a className="main-btn" href="#">
|
||||
Learn More
|
||||
|
||||
@@ -54,8 +54,8 @@ function TrafficHomeTwo() {
|
||||
</div>
|
||||
<div className="col-lg-12">
|
||||
<div className="traffic-btn mt-50">
|
||||
<a className="main-btn" href="#">
|
||||
Join us today and start creating lasting memries together <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>
|
||||
|
||||
@@ -100,6 +100,42 @@ a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ACCEPT COOKIE SLIDE UP EFFECT */
|
||||
.cookies-wrapper{
|
||||
width: 90%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background-color: white;
|
||||
box-shadow: 0px 0px 1px black;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.slide-up {
|
||||
animation: slideup 1s linear forwards;
|
||||
}
|
||||
|
||||
.slide-down {
|
||||
animation: slidedown 1s linear forwards;
|
||||
}
|
||||
|
||||
@keyframes slideup {
|
||||
0%{bottom: -50%;}
|
||||
100%{bottom: 0;}
|
||||
}
|
||||
|
||||
@keyframes slidedown {
|
||||
0%{bottom: 0;}
|
||||
100%{bottom: -50%; display: none;}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 992px) {
|
||||
.cookies-wrapper p, .cookies-wrapper button {
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
/* END ACCEPT COOKIE SLIDE UP EFFECT */
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
color-scheme: dark;
|
||||
|
||||
@@ -2,6 +2,7 @@ import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import Script from "next/script";
|
||||
import AcceptCookies from "./components/AcceptCookies";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
@@ -31,7 +32,10 @@ export default function RootLayout({
|
||||
/>
|
||||
<meta property="og:image" content="%PUBLIC_URL%/favicon-32x32.png" />
|
||||
|
||||
<body className={inter.className}>{children}</body>
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
<AcceptCookies />
|
||||
</body>
|
||||
<Script id='chat-support'>
|
||||
{`
|
||||
var LHC_API = LHC_API || {};
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
"dependencies": {
|
||||
"axios": "^1.7.2",
|
||||
"caniuse-lite": "^1.0.30001651",
|
||||
"js-cookie": "^3.0.5",
|
||||
"next": "14.2.5",
|
||||
"react": "^18",
|
||||
"react-dom": "^18",
|
||||
|
||||
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 29 KiB |