Initial next app with favicon and metadata.

This commit is contained in:
2021-08-09 15:14:38 -05:00
parent cef40c17e9
commit 59dadfcd42
17 changed files with 3413 additions and 101 deletions

10
interfaces/index.ts Normal file
View File

@@ -0,0 +1,10 @@
// You can include shared interfaces/types in a separate file
// and then use them in any component by importing them. For
// example, to import the interface below do:
//
// import { User } from 'path/to/interfaces';
export type User = {
id: number
name: string
}