From b75d8d3abb13b35d54cf3becc4894e3d43b5bc42 Mon Sep 17 00:00:00 2001 From: janna1702 Date: Tue, 21 May 2024 22:08:17 +0200 Subject: [PATCH] fix arch,added gitignore --- .gitignore | 15 ++++++++ front/README.md | 36 ------------------ front/next-env.d.ts => next-env.d.ts | 0 front/next.config.mjs => next.config.mjs | 0 front/package-lock.json => package-lock.json | 0 front/package.json => package.json | 0 .../postcss.config.mjs => postcss.config.mjs | 0 {front/public => public}/next.svg | 0 {front/public => public}/vercel.svg | 0 {front/src => src}/app/favicon.ico | Bin {front/src => src}/app/globals.css | 0 {front/src => src}/app/layout.tsx | 0 {front/src => src}/app/login/LoginPage.tsx | 0 {front/src => src}/app/login/login.service.ts | 0 .../src => src}/app/organization/OrgCard.tsx | 0 .../app/organization/OrgCreatePage.tsx | 0 .../src => src}/app/organization/OrgForm.tsx | 0 .../app/organization/dashboard/OrgProfile.tsx | 0 .../app/organization/dashboard/page.tsx | 0 .../app/organization/employees/Employee.tsx | 0 .../app/organization/employees/page.tsx | 0 .../organization/multiSig/MultiSigPage.tsx | 0 .../app/organization/multiSig/page.tsx | 0 {front/src => src}/app/organization/page.tsx | 0 {front/src => src}/app/page.tsx | 0 {front/src => src}/app/seedItem/SeedItem.tsx | 0 {front/src => src}/hooks/login.tsx | 0 .../tailwind.config.ts => tailwind.config.ts | 0 front/tsconfig.json => tsconfig.json | 0 29 files changed, 15 insertions(+), 36 deletions(-) create mode 100644 .gitignore delete mode 100644 front/README.md rename front/next-env.d.ts => next-env.d.ts (100%) rename front/next.config.mjs => next.config.mjs (100%) rename front/package-lock.json => package-lock.json (100%) rename front/package.json => package.json (100%) rename front/postcss.config.mjs => postcss.config.mjs (100%) rename {front/public => public}/next.svg (100%) rename {front/public => public}/vercel.svg (100%) rename {front/src => src}/app/favicon.ico (100%) rename {front/src => src}/app/globals.css (100%) rename {front/src => src}/app/layout.tsx (100%) rename {front/src => src}/app/login/LoginPage.tsx (100%) rename {front/src => src}/app/login/login.service.ts (100%) rename {front/src => src}/app/organization/OrgCard.tsx (100%) rename {front/src => src}/app/organization/OrgCreatePage.tsx (100%) rename {front/src => src}/app/organization/OrgForm.tsx (100%) rename {front/src => src}/app/organization/dashboard/OrgProfile.tsx (100%) rename {front/src => src}/app/organization/dashboard/page.tsx (100%) rename {front/src => src}/app/organization/employees/Employee.tsx (100%) rename {front/src => src}/app/organization/employees/page.tsx (100%) rename {front/src => src}/app/organization/multiSig/MultiSigPage.tsx (100%) rename {front/src => src}/app/organization/multiSig/page.tsx (100%) rename {front/src => src}/app/organization/page.tsx (100%) rename {front/src => src}/app/page.tsx (100%) rename {front/src => src}/app/seedItem/SeedItem.tsx (100%) rename {front/src => src}/hooks/login.tsx (100%) rename front/tailwind.config.ts => tailwind.config.ts (100%) rename front/tsconfig.json => tsconfig.json (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6ef83fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.idea/ +.vscode/ +node_modules/ +build/ +.DS_Store +*.tgz +my-app* +template/src/__tests__/__snapshots__/ +lerna-debug.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +/.changelog +.npm/ +.next \ No newline at end of file diff --git a/front/README.md b/front/README.md deleted file mode 100644 index c403366..0000000 --- a/front/README.md +++ /dev/null @@ -1,36 +0,0 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/front/next-env.d.ts b/next-env.d.ts similarity index 100% rename from front/next-env.d.ts rename to next-env.d.ts diff --git a/front/next.config.mjs b/next.config.mjs similarity index 100% rename from front/next.config.mjs rename to next.config.mjs diff --git a/front/package-lock.json b/package-lock.json similarity index 100% rename from front/package-lock.json rename to package-lock.json diff --git a/front/package.json b/package.json similarity index 100% rename from front/package.json rename to package.json diff --git a/front/postcss.config.mjs b/postcss.config.mjs similarity index 100% rename from front/postcss.config.mjs rename to postcss.config.mjs diff --git a/front/public/next.svg b/public/next.svg similarity index 100% rename from front/public/next.svg rename to public/next.svg diff --git a/front/public/vercel.svg b/public/vercel.svg similarity index 100% rename from front/public/vercel.svg rename to public/vercel.svg diff --git a/front/src/app/favicon.ico b/src/app/favicon.ico similarity index 100% rename from front/src/app/favicon.ico rename to src/app/favicon.ico diff --git a/front/src/app/globals.css b/src/app/globals.css similarity index 100% rename from front/src/app/globals.css rename to src/app/globals.css diff --git a/front/src/app/layout.tsx b/src/app/layout.tsx similarity index 100% rename from front/src/app/layout.tsx rename to src/app/layout.tsx diff --git a/front/src/app/login/LoginPage.tsx b/src/app/login/LoginPage.tsx similarity index 100% rename from front/src/app/login/LoginPage.tsx rename to src/app/login/LoginPage.tsx diff --git a/front/src/app/login/login.service.ts b/src/app/login/login.service.ts similarity index 100% rename from front/src/app/login/login.service.ts rename to src/app/login/login.service.ts diff --git a/front/src/app/organization/OrgCard.tsx b/src/app/organization/OrgCard.tsx similarity index 100% rename from front/src/app/organization/OrgCard.tsx rename to src/app/organization/OrgCard.tsx diff --git a/front/src/app/organization/OrgCreatePage.tsx b/src/app/organization/OrgCreatePage.tsx similarity index 100% rename from front/src/app/organization/OrgCreatePage.tsx rename to src/app/organization/OrgCreatePage.tsx diff --git a/front/src/app/organization/OrgForm.tsx b/src/app/organization/OrgForm.tsx similarity index 100% rename from front/src/app/organization/OrgForm.tsx rename to src/app/organization/OrgForm.tsx diff --git a/front/src/app/organization/dashboard/OrgProfile.tsx b/src/app/organization/dashboard/OrgProfile.tsx similarity index 100% rename from front/src/app/organization/dashboard/OrgProfile.tsx rename to src/app/organization/dashboard/OrgProfile.tsx diff --git a/front/src/app/organization/dashboard/page.tsx b/src/app/organization/dashboard/page.tsx similarity index 100% rename from front/src/app/organization/dashboard/page.tsx rename to src/app/organization/dashboard/page.tsx diff --git a/front/src/app/organization/employees/Employee.tsx b/src/app/organization/employees/Employee.tsx similarity index 100% rename from front/src/app/organization/employees/Employee.tsx rename to src/app/organization/employees/Employee.tsx diff --git a/front/src/app/organization/employees/page.tsx b/src/app/organization/employees/page.tsx similarity index 100% rename from front/src/app/organization/employees/page.tsx rename to src/app/organization/employees/page.tsx diff --git a/front/src/app/organization/multiSig/MultiSigPage.tsx b/src/app/organization/multiSig/MultiSigPage.tsx similarity index 100% rename from front/src/app/organization/multiSig/MultiSigPage.tsx rename to src/app/organization/multiSig/MultiSigPage.tsx diff --git a/front/src/app/organization/multiSig/page.tsx b/src/app/organization/multiSig/page.tsx similarity index 100% rename from front/src/app/organization/multiSig/page.tsx rename to src/app/organization/multiSig/page.tsx diff --git a/front/src/app/organization/page.tsx b/src/app/organization/page.tsx similarity index 100% rename from front/src/app/organization/page.tsx rename to src/app/organization/page.tsx diff --git a/front/src/app/page.tsx b/src/app/page.tsx similarity index 100% rename from front/src/app/page.tsx rename to src/app/page.tsx diff --git a/front/src/app/seedItem/SeedItem.tsx b/src/app/seedItem/SeedItem.tsx similarity index 100% rename from front/src/app/seedItem/SeedItem.tsx rename to src/app/seedItem/SeedItem.tsx diff --git a/front/src/hooks/login.tsx b/src/hooks/login.tsx similarity index 100% rename from front/src/hooks/login.tsx rename to src/hooks/login.tsx diff --git a/front/tailwind.config.ts b/tailwind.config.ts similarity index 100% rename from front/tailwind.config.ts rename to tailwind.config.ts diff --git a/front/tsconfig.json b/tsconfig.json similarity index 100% rename from front/tsconfig.json rename to tsconfig.json