generated from mateusfg7/nextjs-setup
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(contentlayer): create AboutMe definition and mdx file
- Loading branch information
Showing
3 changed files
with
14 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
My name is **Mateus Felipe Gonçalves**, I'm 20 years old and I live in Pará de Minas - MG, Brazil. | ||
|
||
**Self-taught** full-stack. I have knowledge in [ReactJS](https://react.dev/) and [NextJS](https://nextjs.org/) on the Front-end, [Nest.js](https://nestjs.com/) and [Express.js](https://expressjs.com) on the Back-end, and [React-native](https://reactnative.dev/)/[Expo](https://expo.dev/) on Mobile with a focus on Android. My main stack is around [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript), primarily [Typescript](https://www.typescriptlang.org/). | ||
|
||
I'm on an intermediate level of English in reading and writing, skill acquired by reading various documentation and articles related to technologies and other subjects in English, and also writing blog posts and documentation of personal projects. |
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,7 @@ | ||
import { defineDocumentType } from 'contentlayer/source-files' | ||
|
||
export const AboutMe = defineDocumentType(() => ({ | ||
name: 'About', | ||
contentType: 'mdx', | ||
filePathPattern: 'about-me.mdx' | ||
})) |
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