-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
553a591
commit 010b259
Showing
6 changed files
with
73 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import type { FC, PropsWithChildren } from 'react'; | ||
|
||
import WithFooter from '@/components/withFooter'; | ||
import WithNavBar from '@/components/withNavBar'; | ||
|
||
import styles from './layouts.module.css'; | ||
|
||
const HomeLayout: FC<PropsWithChildren> = ({ children }) => ( | ||
<> | ||
<WithNavBar /> | ||
|
||
<div className={`${styles.centeredLayout} ${styles.homeLayout}`}> | ||
<div className="glowingBackdrop" /> | ||
|
||
<main>{children}</main> | ||
</div> | ||
|
||
<WithFooter /> | ||
</> | ||
); | ||
|
||
export default HomeLayout; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
title: Run JavaScript Everywhere | ||
layout: centered.hbs | ||
layout: home.hbs | ||
--- | ||
|
||
<section> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters