diff --git a/.eslintrc.json b/.eslintrc.json index bffb357..fcc554e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,4 @@ { "extends": "next/core-web-vitals" + "rules": { } diff --git a/components/newComponent.js b/components/newComponent.js new file mode 100644 index 0000000..8c91b28 --- /dev/null +++ b/components/newComponent.js @@ -0,0 +1,6 @@ +import React from 'react'; + +const NewComponent = () => { + return
New Feature Component
; +}; +export default NewComponent; diff --git a/pages/newPage.js b/pages/newPage.js new file mode 100644 index 0000000..f8399fc --- /dev/null +++ b/pages/newPage.js @@ -0,0 +1,6 @@ +import React from 'react'; + +const NewPage = () => { + return
New Feature Page
; +}; +export default NewPage; diff --git a/tailwind.config.ts b/tailwind.config.ts index 8894b42..f8f1c48 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -26,6 +26,7 @@ module.exports = { lightHover: "#E0E0E0", analogueBlue: "#0900FF", }, + newColor: "#123456", fontFamily: { sans: ["sans-serif", "sans-serif"], serif: ["Georgia", "serif"], diff --git a/utils/newUtility.js b/utils/newUtility.js new file mode 100644 index 0000000..bb15494 --- /dev/null +++ b/utils/newUtility.js @@ -0,0 +1,4 @@ +export const newUtilityFunction = () => { + // Utility function logic + return 'Utility Function Result'; +};