Skip to content

Commit

Permalink
added no script
Browse files Browse the repository at this point in the history
  • Loading branch information
RikhiSingh committed May 11, 2024
1 parent 7044d99 commit 205890c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/transitionProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ const TransitionProvider = ({ children }) => {

return (
<AnimatePresence mode="wait">
{/* <!-- Google Tag Manager (noscript) --> */}
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MDG9CTG7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
{/* <!-- End Google Tag Manager (noscript) --> */}
{/* as we need metadata to be rendered and transition provider requires use client */}
<div key={pathName} className="w-screen h-screen bg-gradient-to-b from-blue-100 to-red-100">
<motion.div
className="h-screen w-screen fixed bg-black rounded-b-[100px] z-40"
Expand All @@ -29,7 +34,7 @@ const TransitionProvider = ({ children }) => {
className="h-screen w-screen fixed bg-black rounded-t-[100px] bottom-0 z-30"
initial={{ height: "140vh" }}
animate={{ height: "0vh", transition: { delay: 0.5 } }}
/>
/>
<div className="h-24">
<Navbar />
</div>
Expand Down

0 comments on commit 205890c

Please sign in to comment.