https://github.com/patrickgdl/frontend-platform-test
https://github.com/patrickgdl/frontend-platform-test
Last synced: about 3 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrickgdl/frontend-platform-test
- Owner: patrickgdl
- Created: 2024-07-27T14:00:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-28T21:42:53.000Z (almost 2 years ago)
- Last Synced: 2025-03-31T03:38:13.313Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://frontend-platform-test.vercel.app
- Size: 7.53 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Front-end platform test
### Common commands
- `node server.js` - start the node server providing the data
- `npm run dev` - run the development env with nextjs
### Typography
Follow this global css to include font custom using in figma file:
```
@font-face {
font-family: 'Articulat';
src: url('/assets/fonts/ArticulatCF-Medium.otf');
font-weight: 600;
}
@font-face {
font-family: 'Articulat';
src: url('/assets/fonts/ArticulatCF-Normal.otf');
font-weight: 500;
}
body {
font-size: 16px;
font-weight: 500;
line-height: 100%;
font-family: 'Articulat', helvetica, arial, sans-serif;
}
```