formatting

This commit is contained in:
StevanFreeborn
2022-06-26 11:49:03 -05:00
parent 7ff302a41d
commit da36cfa782
10 changed files with 61 additions and 12 deletions
+8 -2
View File
@@ -13,7 +13,13 @@ export default function About() {
return sections.map(section => {
return <AboutSection section={section}/>
return (
<AboutSection
section={section}
/>
);
});
@@ -27,7 +33,7 @@ export default function About() {
<Col>
<h1 className='text-center py-4'>Wanna know more?</h1>
<h1 className='text-center py-4'>Wheels up...</h1>
</Col>
+5
View File
@@ -48,10 +48,15 @@ export default function Home() {
return (
<>
<Greeting />
{characters.length > 0 ?
<CardHolder>
{getCharacterCards()}
</CardHolder>
: <Loading />}
</>
);