refac
Some checks are pending
Deploy site to Pages / build (push) Waiting to run
Deploy site to Pages / deploy (push) Blocked by required conditions

This commit is contained in:
Timothy Jaeryang Baek
2025-04-06 16:30:23 -07:00
parent a9117d6483
commit 0cf522f2dd
4 changed files with 25 additions and 4 deletions

21
src/theme/Layout.tsx Normal file
View File

@@ -0,0 +1,21 @@
import React from 'react';
import Layout from '@theme-original/Layout';
import { TopBanners } from '../components/TopBanners';
export default function CustomLayout(props) {
return (
<>
{/* <div className=' z-[1000]' >
<div className='w-full flex justify-center'>
<div className=' px-2 py-1'>
<TopBanners />
</div>
</div>
</div> */}
{/* Render the original layout (which includes the navbar and the rest) */}
<Layout {...props} />
</>
);
}