generated from HackDavis/nextjs-app-router-template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1c84da4
commit fb356d5
Showing
5 changed files
with
23 additions
and
17 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
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,12 +1,12 @@ | ||
import HeroStats from "../_components/hero/heroStats"; | ||
import HeroText from "../_components/hero/heroText"; | ||
import HeroStats from '../_components/hero/heroStats'; | ||
import HeroText from '../_components/hero/heroText'; | ||
|
||
export default function AboutUs() { | ||
return ( | ||
<div> | ||
<div style={{margin:'500px'}}>Halo this is the about us page!</div> | ||
<HeroText/> | ||
<HeroStats/> | ||
<div style={{ margin: '500px' }}>Halo this is the about us page!</div> | ||
<HeroText /> | ||
<HeroStats /> | ||
</div> | ||
); | ||
} |