Skip to content

Commit a0ba645

Browse files
committed
chore: comment out GoogleOneTap component in LandingLayout
- Removed the GoogleOneTap component from the LandingLayout file by commenting it out for potential future use. - This change does not affect the current functionality of the landing page.
1 parent b672456 commit a0ba645

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/(landing)/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Metadata } from 'next';
22
import { ReactNode } from 'react';
33
import { Footer, Navbar } from '@/components/landing-page';
44
import { generatePageMetadata } from '@/lib/metadata';
5-
import { GoogleOneTap } from '@/components/auth/GoogleOneTap';
5+
// import { GoogleOneTap } from '@/components/auth/GoogleOneTap';
66
import { LandingWalletWrapper } from '@/components/wallet/LandingWalletWrapper';
77

88
export const metadata: Metadata = generatePageMetadata('home');
@@ -17,7 +17,7 @@ export default function LandingLayout({ children }: LandingLayoutProps) {
1717
<Navbar />
1818
<main className='flex-1'>{children}</main>
1919
<Footer />
20-
<GoogleOneTap />
20+
{/* <GoogleOneTap /> */}
2121
<LandingWalletWrapper />
2222
</div>
2323
);

0 commit comments

Comments
 (0)