-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] - added the officer & meet our staff section
- Loading branch information
1 parent
8796abf
commit 0df10aa
Showing
2 changed files
with
26 additions
and
3 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,19 @@ | ||
import { Box } from "@chakra-ui/react" | ||
import { SEO } from "~/components/SEO" | ||
|
||
const about = () => { | ||
return ( | ||
<Box> | ||
<Box id="officers"> | ||
<h1>Officer content</h1> | ||
</Box> | ||
<Box id="meetourstaff"> | ||
<h1>meet our staff content</h1> | ||
</Box> | ||
</Box> | ||
) | ||
} | ||
|
||
export default about | ||
|
||
export const Head = () => <SEO /> |