The Node.js® Website
at main 378 B view raw
1import type { FC, PropsWithChildren } from 'react'; 2 3import CenteredLayout from '@/layouts/Centered'; 4 5import styles from './layouts.module.css'; 6 7const HomeLayout: FC<PropsWithChildren> = ({ children }) => ( 8 <CenteredLayout> 9 <div className="glowingBackdrop" /> 10 11 <main className={styles.homeLayout}>{children}</main> 12 </CenteredLayout> 13); 14 15export default HomeLayout;