feat: privacy link
This commit is contained in:
parent
5cde219b38
commit
f24aaf26ac
@ -34,7 +34,14 @@ export const metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
export default function Layout({ headerStyle, footerStyle, headTitle, breadcrumbTitle, children, transparent }) {
|
||||
export default function Layout({
|
||||
headerStyle,
|
||||
footerStyle,
|
||||
headTitle,
|
||||
breadcrumbTitle,
|
||||
children,
|
||||
transparent,
|
||||
}) {
|
||||
const [scroll, setScroll] = useState(0);
|
||||
const [isMobileMenu, setMobileMenu] = useState(false);
|
||||
const handleMobileMenu = () => {
|
||||
@ -68,7 +75,10 @@ export default function Layout({ headerStyle, footerStyle, headTitle, breadcrumb
|
||||
return (
|
||||
<>
|
||||
<PageHead headTitle={headTitle} />
|
||||
<Script strategy="afterInteractive" src="https://www.googletagmanager.com/gtag/js?id=G-3HXP950DQQ" />
|
||||
<Script
|
||||
strategy="afterInteractive"
|
||||
src="https://www.googletagmanager.com/gtag/js?id=G-3HXP950DQQ"
|
||||
/>
|
||||
<Script id="google-analytics" strategy="afterInteractive">
|
||||
{`
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
@ -220,18 +220,25 @@ export default function Footer3() {
|
||||
<div className="footer__bottom-three">
|
||||
<div className="container">
|
||||
<div className="row align-items-center">
|
||||
{/* <div className="col-md-6">
|
||||
<div className="fw-logo">
|
||||
<Link href="/">
|
||||
<img src="/assets/img/logo/logo.png" alt="" />
|
||||
</Link>
|
||||
</div>
|
||||
</div> */}
|
||||
<div>
|
||||
<div className="col-md-6">
|
||||
<div className="copyright-text">
|
||||
<p>
|
||||
Copyright © {currentYear}{" "}
|
||||
<Link href="/">RankRunners</Link> | All Rights Reserved
|
||||
© Copyright {currentYear}{" "}
|
||||
<Link href="/">RankRunners</Link>. All Rights Reserved
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="col-md-6 d-flex justify-content-center align-items-center">
|
||||
<div className="copyright-text ">
|
||||
<p>
|
||||
<Link href={"/privacy-policy"}>Privacy Policy</Link>
|
||||
</p>
|
||||
</div>
|
||||
<span className="mx-2">|</span>
|
||||
<div className="copyright-text ">
|
||||
<p>
|
||||
<Link href={"/privacy-policy"}>Term and Conditions</Link>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user