File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
180180 - Decorations/Bracket
181181 - Decorations/Stick
182182 - TwoColumn
183+ - Layout
183184 - RelatedPosts
184185- Extracted : root from themes.scss to globals.scss
185186- Updated ContactUsForm's checkbox wrapper from div to label to enhance its accessibility
@@ -191,3 +192,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
191192 - home(index) page
192193- Created a combineClasses function to clean up conditional class handling
193194- Rename RowAlignLeft to Row
195+ - Remove unessesary stylings from the Layout.
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import { heroOptions } from '@/utils/hero-options';
33import Hero from '@/components/layout/Hero' ;
44import Meta from '@/components/layout/Meta' ;
55import Footer from '@/components/layout/Footer' ;
6- import S from './styles' ;
76
87export default function Layout ( { children } ) {
98 const router = useRouter ( ) ;
@@ -15,11 +14,11 @@ export default function Layout({ children }) {
1514 return (
1615 < >
1716 < Meta />
18- < S . Main >
17+ < main >
1918 < Hero { ...heroOptions [ heroKey ] } />
2019 { children }
2120 < Footer />
22- </ S . Main >
21+ </ main >
2322 </ >
2423 ) ;
2524}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments