About Us page #70

Merged
l42luo merged 21 commits from feat/about-us-page into main 2021-07-18 03:37:49 -04:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit ff3a3d57a2 - Show all commits

8
next-env.d.ts vendored
View File

@ -62,3 +62,11 @@ declare module "*.section.mdx" {
export const metadata: SectionMetadata;
export default ReactComponent;
}
declare module "*.mdx" {
import { ComponentType } from "react";
const ReactComponent: ComponentType;
export default ReactComponent;
}