diff --git a/package-lock.json b/package-lock.json index 91f33b7..d517ca9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "1.0.0", "license": "MIT", "dependencies": { + "@next/env": "^15.3.2", "@payloadcms/db-postgres": "3.33.0", "@payloadcms/next": "3.33.0", "@payloadcms/payload-cloud": "3.33.0", @@ -3376,9 +3377,9 @@ } }, "node_modules/@next/env": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.0.tgz", - "integrity": "sha512-6mDmHX24nWlHOlbwUiAOmMyY7KELimmi+ed8qWcJYjqXeC+G6JzPZ3QosOAfjNwgMIzwhXBiRiCgdh8axTTdTA==", + "version": "15.3.2", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.2.tgz", + "integrity": "sha512-xURk++7P7qR9JG1jJtLzPzf0qEvqCN0A/T3DXf8IPMKo9/6FfjxtEffRJIIew/bIL4T3C2jLLqBor8B/zVlx6g==", "license": "MIT" }, "node_modules/@next/eslint-plugin-next": { @@ -11179,6 +11180,12 @@ "react-dom": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc" } }, + "node_modules/next/node_modules/@next/env": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.0.tgz", + "integrity": "sha512-6mDmHX24nWlHOlbwUiAOmMyY7KELimmi+ed8qWcJYjqXeC+G6JzPZ3QosOAfjNwgMIzwhXBiRiCgdh8axTTdTA==", + "license": "MIT" + }, "node_modules/next/node_modules/postcss": { "version": "8.4.31", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", diff --git a/package.json b/package.json index ed0c19c..0ec3d6b 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "start": "cross-env NODE_OPTIONS=--no-deprecation next start" }, "dependencies": { + "@next/env": "^15.3.2", "@payloadcms/db-postgres": "3.33.0", "@payloadcms/next": "3.33.0", "@payloadcms/payload-cloud": "3.33.0", diff --git a/src/app/(frontend)/favicon.ico b/src/app/(frontend)/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/src/app/(frontend)/favicon.ico differ diff --git a/src/app/beitzah-egg-bare.svg b/src/app/beitzah-egg-bare.svg new file mode 100644 index 0000000..66084c5 --- /dev/null +++ b/src/app/beitzah-egg-bare.svg @@ -0,0 +1,195 @@ + + + + + +Created by potrace 1.10, written by Peter Selinger 2001-2011 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/favicon.ico b/src/app/favicon.ico new file mode 100644 index 0000000..3c1ff16 Binary files /dev/null and b/src/app/favicon.ico differ diff --git a/src/envConfig.ts b/src/envConfig.ts new file mode 100644 index 0000000..aec6502 --- /dev/null +++ b/src/envConfig.ts @@ -0,0 +1,4 @@ +import { loadEnvConfig } from '@next/env' + +const projectDir = process.cwd() +loadEnvConfig(projectDir) diff --git a/src/payload.config.ts b/src/payload.config.ts index 8ccb56d..9cec417 100644 --- a/src/payload.config.ts +++ b/src/payload.config.ts @@ -15,11 +15,23 @@ import { defaultLexical } from './fields/defaultLexical' import { NavGlobal } from './globals/Nav/config' import { MetaGlobal } from './globals/Meta/config' +import './envConfig.ts' + const filename = fileURLToPath(import.meta.url) const dirname = path.dirname(filename) export default buildConfig({ admin: { + meta: { + title: 'ySandler | Custom Software Consultant', + description: 'Yehoshua Sandler is a custom software consultant helping buisnesses and organizations streamline their workflow and organize theit data by creating beautiful and easy to use software accross the full stack.', + icons: [ + { + rel: 'icon', + url: '/favicon.ico', + }, + ], + }, user: Users.slug, importMap: { baseDir: path.resolve(dirname),