change date-picker & add page login-verify & account & new user & payment
This commit is contained in:
@@ -8,7 +8,7 @@ import Aos from "aos";
|
||||
import "aos/dist/aos.css";
|
||||
import { useEffect } from "react";
|
||||
|
||||
function Layout({ children, title, name }) {
|
||||
function Layout({ children, title, name, disableFooter }) {
|
||||
|
||||
useEffect(() => {
|
||||
Aos.init({ duration: 1000 });
|
||||
@@ -24,11 +24,13 @@ function Layout({ children, title, name }) {
|
||||
{children}
|
||||
</section>
|
||||
</main>
|
||||
<footer className="bg-[#F5F5F5] pt-[44px] mt-[100px] bg-banner-footer !bg-center !bg-no-repeat !bg-cover">
|
||||
<div className='padding-responsive'>
|
||||
<Footer />
|
||||
</div>
|
||||
</footer>
|
||||
{disableFooter ? undefined : (
|
||||
<footer className="bg-[#F5F5F5] pt-[44px] mt-[100px] bg-banner-footer !bg-center !bg-no-repeat !bg-cover">
|
||||
<div className='padding-responsive'>
|
||||
<Footer />
|
||||
</div>
|
||||
</footer>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user