refactor(config): update config + types
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
import { PCDefaultValues } from 'types/projectConfig'
|
||||
import { SEODefaultValues } from 'types/config'
|
||||
|
||||
export const projectConfig: PCDefaultValues = {
|
||||
shortName: 'Boilerplate',
|
||||
longName: 'Next.Js Boilerplate',
|
||||
description:
|
||||
'The latest Next.js boilerplate starter code/time saver with Typescript / SCSS. Including linters such as: Prettier, Eslint and Stylelint.',
|
||||
url: 'Unknown project url',
|
||||
export const PROJECT_NAME = 'Boilerplate'
|
||||
|
||||
export const SEOConfig: SEODefaultValues = {
|
||||
shortName: PROJECT_NAME,
|
||||
longName: `Next.Js ${PROJECT_NAME}`,
|
||||
description: `My Next.JS ${PROJECT_NAME} with TS - Tailwind CSS and much more.`,
|
||||
url: 'https://next-app-boilerplate.vercel.app/',
|
||||
defaultLocale: 'en',
|
||||
color: '#775aaa',
|
||||
icons: {
|
||||
|
Reference in New Issue
Block a user