├── .env.template ├── .eslintrc ├── .github ├── actions │ ├── run-playwright │ │ └── action.yml │ └── setup-playwright │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── combine-prs.yml │ ├── netlify-e2e.yml │ └── vercel-e2e.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLinters │ └── eslint.xml ├── libraries │ └── cache.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── wix-cms-nextjs-template.iml ├── .npmrc ├── .nvmrc ├── .prettierrc.js ├── .yarn └── releases │ └── yarn-3.3.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── app ├── about │ └── page.tsx ├── components │ ├── Carousel │ │ └── Carousel.tsx │ ├── Image │ │ └── WixMediaImage.tsx │ ├── Layout │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── NavBar │ │ │ ├── LoginAvatar.tsx │ │ │ ├── NavBar.tsx │ │ │ └── NavLink.tsx │ │ └── footer.css │ └── Logo │ │ └── Logo.tsx ├── constants.ts ├── contact │ └── page.tsx ├── globals.css ├── hooks │ └── useWixClientServer.ts ├── layout.tsx ├── news │ ├── [slug] │ │ └── page.tsx │ └── page.tsx ├── page.tsx ├── projects │ ├── [slug] │ │ └── page.tsx │ └── page.tsx ├── team │ └── page.tsx └── utils │ ├── date-formatter.ts │ └── test-ids.ts ├── docs ├── integration-guide.md └── media │ ├── github-action.png │ ├── project-business-solutions.png │ └── template-showcase.gif ├── netlify.toml ├── next.config.js ├── package.json ├── playwright-report ├── data │ ├── 1a3fd942def58d8d73864ce612fa28c115afab77.zip │ ├── 1fe778f5639b60ef8f99c73d7c7c3909cb8034c8.zip │ ├── a42cc3bd0ac361d776de26b7a531a407c1a51b04.zip │ ├── b4e27ae71faa27fc78306c45d2ed3c699c04c138.zip │ ├── ded07751d8c7bb32d1c9c6b50a34ee472b83c2a3.zip │ ├── ebee76e04f9a0fbacd8dac22341b51cb0051f55c.zip │ └── f65bb65740e2c310db6ccf5249dd53a7036bd0c8.zip ├── index.html └── trace │ ├── assets │ ├── codeMirrorModule-aea9c42f.js │ └── wsPort-fb5048bf.js │ ├── codeMirrorModule.5d0f417c.css │ ├── codicon.dcd00fb4.ttf │ ├── icon-16x16.png │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-32x32.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── index.3960872c.js │ ├── index.html │ ├── popout.html │ ├── sw.bundle.js │ ├── uiMode.6f708c89.js │ ├── uiMode.922a7b48.css │ ├── uiMode.html │ ├── wsPort.9e506779.css │ └── xtermModule.6428296b.css ├── playwright.config.ts ├── postcss.config.js ├── public └── images │ └── placeholder.jpg ├── tailwind.config.js ├── test-results ├── home-Home-Page-look-and-feel---highlights-chromium │ └── trace.zip ├── home-Home-Page-navigation---Our-Initiatives-navigates-to-Projects-page-chromium │ └── trace.zip ├── news-News-Page-look-and-feel---News-navigates-to-News-Details--chromium │ └── trace.zip ├── news-News-Page-look-and-feel---news-chromium │ └── trace.zip ├── projects-Projects-Page-look-and-feel---Projects-navigates-to-Project-Details--chromium │ └── trace.zip ├── projects-Projects-Page-look-and-feel---projects-chromium │ └── trace.zip └── team-Team-Page-look-and-feel---team-chromium │ └── trace.zip ├── tests └── e2e │ ├── __screenshots__ │ ├── .gitignore │ ├── netlify │ │ └── chromium │ │ │ ├── home.spec.ts │ │ │ └── home-highlights.png │ │ │ ├── news.spec.ts │ │ │ ├── news-details.png │ │ │ └── news-list.png │ │ │ ├── projects.spec.ts │ │ │ ├── project-details.png │ │ │ └── project-list.png │ │ │ └── team.spec.ts │ │ │ └── team-members.png │ └── vercel │ │ └── chromium │ │ ├── home.spec.ts │ │ └── home-highlights.png │ │ ├── news.spec.ts │ │ ├── news-details.png │ │ └── news-list.png │ │ ├── projects.spec.ts │ │ ├── project-details.png │ │ └── project-list.png │ │ └── team.spec.ts │ │ └── team-members.png │ ├── home.spec.ts │ ├── news.spec.ts │ ├── projects.spec.ts │ └── team.spec.ts ├── tsconfig.json └── yarn.lock /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.env.template -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/actions/run-playwright/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.github/actions/run-playwright/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-playwright/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.github/actions/setup-playwright/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/combine-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.github/workflows/combine-prs.yml -------------------------------------------------------------------------------- /.github/workflows/netlify-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.github/workflows/netlify-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/vercel-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.github/workflows/vercel-e2e.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLinters/eslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/jsLinters/eslint.xml -------------------------------------------------------------------------------- /.idea/libraries/cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/libraries/cache.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wix-cms-nextjs-template.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.idea/wix-cms-nextjs-template.iml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.3.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.yarn/releases/yarn-3.3.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/README.md -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/components/Carousel/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Carousel/Carousel.tsx -------------------------------------------------------------------------------- /app/components/Image/WixMediaImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Image/WixMediaImage.tsx -------------------------------------------------------------------------------- /app/components/Layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Layout/Footer.tsx -------------------------------------------------------------------------------- /app/components/Layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Layout/Header.tsx -------------------------------------------------------------------------------- /app/components/Layout/NavBar/LoginAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Layout/NavBar/LoginAvatar.tsx -------------------------------------------------------------------------------- /app/components/Layout/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Layout/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /app/components/Layout/NavBar/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Layout/NavBar/NavLink.tsx -------------------------------------------------------------------------------- /app/components/Layout/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Layout/footer.css -------------------------------------------------------------------------------- /app/components/Logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/components/Logo/Logo.tsx -------------------------------------------------------------------------------- /app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/constants.ts -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/hooks/useWixClientServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/hooks/useWixClientServer.ts -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/news/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/news/[slug]/page.tsx -------------------------------------------------------------------------------- /app/news/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/news/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/projects/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/projects/[slug]/page.tsx -------------------------------------------------------------------------------- /app/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/projects/page.tsx -------------------------------------------------------------------------------- /app/team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/team/page.tsx -------------------------------------------------------------------------------- /app/utils/date-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/utils/date-formatter.ts -------------------------------------------------------------------------------- /app/utils/test-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/app/utils/test-ids.ts -------------------------------------------------------------------------------- /docs/integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/docs/integration-guide.md -------------------------------------------------------------------------------- /docs/media/github-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/docs/media/github-action.png -------------------------------------------------------------------------------- /docs/media/project-business-solutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/docs/media/project-business-solutions.png -------------------------------------------------------------------------------- /docs/media/template-showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/docs/media/template-showcase.gif -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/netlify.toml -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/package.json -------------------------------------------------------------------------------- /playwright-report/data/1a3fd942def58d8d73864ce612fa28c115afab77.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/1a3fd942def58d8d73864ce612fa28c115afab77.zip -------------------------------------------------------------------------------- /playwright-report/data/1fe778f5639b60ef8f99c73d7c7c3909cb8034c8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/1fe778f5639b60ef8f99c73d7c7c3909cb8034c8.zip -------------------------------------------------------------------------------- /playwright-report/data/a42cc3bd0ac361d776de26b7a531a407c1a51b04.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/a42cc3bd0ac361d776de26b7a531a407c1a51b04.zip -------------------------------------------------------------------------------- /playwright-report/data/b4e27ae71faa27fc78306c45d2ed3c699c04c138.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/b4e27ae71faa27fc78306c45d2ed3c699c04c138.zip -------------------------------------------------------------------------------- /playwright-report/data/ded07751d8c7bb32d1c9c6b50a34ee472b83c2a3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/ded07751d8c7bb32d1c9c6b50a34ee472b83c2a3.zip -------------------------------------------------------------------------------- /playwright-report/data/ebee76e04f9a0fbacd8dac22341b51cb0051f55c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/ebee76e04f9a0fbacd8dac22341b51cb0051f55c.zip -------------------------------------------------------------------------------- /playwright-report/data/f65bb65740e2c310db6ccf5249dd53a7036bd0c8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/data/f65bb65740e2c310db6ccf5249dd53a7036bd0c8.zip -------------------------------------------------------------------------------- /playwright-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/index.html -------------------------------------------------------------------------------- /playwright-report/trace/assets/codeMirrorModule-aea9c42f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/assets/codeMirrorModule-aea9c42f.js -------------------------------------------------------------------------------- /playwright-report/trace/assets/wsPort-fb5048bf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/assets/wsPort-fb5048bf.js -------------------------------------------------------------------------------- /playwright-report/trace/codeMirrorModule.5d0f417c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/codeMirrorModule.5d0f417c.css -------------------------------------------------------------------------------- /playwright-report/trace/codicon.dcd00fb4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/codicon.dcd00fb4.ttf -------------------------------------------------------------------------------- /playwright-report/trace/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/icon-16x16.png -------------------------------------------------------------------------------- /playwright-report/trace/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/icon-192x192.png -------------------------------------------------------------------------------- /playwright-report/trace/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/icon-256x256.png -------------------------------------------------------------------------------- /playwright-report/trace/icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/icon-32x32.png -------------------------------------------------------------------------------- /playwright-report/trace/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/icon-384x384.png -------------------------------------------------------------------------------- /playwright-report/trace/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/icon-512x512.png -------------------------------------------------------------------------------- /playwright-report/trace/index.3960872c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/index.3960872c.js -------------------------------------------------------------------------------- /playwright-report/trace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/index.html -------------------------------------------------------------------------------- /playwright-report/trace/popout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/popout.html -------------------------------------------------------------------------------- /playwright-report/trace/sw.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/sw.bundle.js -------------------------------------------------------------------------------- /playwright-report/trace/uiMode.6f708c89.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/uiMode.6f708c89.js -------------------------------------------------------------------------------- /playwright-report/trace/uiMode.922a7b48.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/uiMode.922a7b48.css -------------------------------------------------------------------------------- /playwright-report/trace/uiMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/uiMode.html -------------------------------------------------------------------------------- /playwright-report/trace/wsPort.9e506779.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/wsPort.9e506779.css -------------------------------------------------------------------------------- /playwright-report/trace/xtermModule.6428296b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright-report/trace/xtermModule.6428296b.css -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/public/images/placeholder.jpg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test-results/home-Home-Page-look-and-feel---highlights-chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/home-Home-Page-look-and-feel---highlights-chromium/trace.zip -------------------------------------------------------------------------------- /test-results/home-Home-Page-navigation---Our-Initiatives-navigates-to-Projects-page-chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/home-Home-Page-navigation---Our-Initiatives-navigates-to-Projects-page-chromium/trace.zip -------------------------------------------------------------------------------- /test-results/news-News-Page-look-and-feel---News-navigates-to-News-Details--chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/news-News-Page-look-and-feel---News-navigates-to-News-Details--chromium/trace.zip -------------------------------------------------------------------------------- /test-results/news-News-Page-look-and-feel---news-chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/news-News-Page-look-and-feel---news-chromium/trace.zip -------------------------------------------------------------------------------- /test-results/projects-Projects-Page-look-and-feel---Projects-navigates-to-Project-Details--chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/projects-Projects-Page-look-and-feel---Projects-navigates-to-Project-Details--chromium/trace.zip -------------------------------------------------------------------------------- /test-results/projects-Projects-Page-look-and-feel---projects-chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/projects-Projects-Page-look-and-feel---projects-chromium/trace.zip -------------------------------------------------------------------------------- /test-results/team-Team-Page-look-and-feel---team-chromium/trace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/test-results/team-Team-Page-look-and-feel---team-chromium/trace.zip -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/.gitignore -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/netlify/chromium/home.spec.ts/home-highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/netlify/chromium/home.spec.ts/home-highlights.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/netlify/chromium/news.spec.ts/news-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/netlify/chromium/news.spec.ts/news-details.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/netlify/chromium/news.spec.ts/news-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/netlify/chromium/news.spec.ts/news-list.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/netlify/chromium/projects.spec.ts/project-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/netlify/chromium/projects.spec.ts/project-details.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/netlify/chromium/projects.spec.ts/project-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/netlify/chromium/projects.spec.ts/project-list.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/netlify/chromium/team.spec.ts/team-members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/netlify/chromium/team.spec.ts/team-members.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/vercel/chromium/home.spec.ts/home-highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/vercel/chromium/home.spec.ts/home-highlights.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/vercel/chromium/news.spec.ts/news-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/vercel/chromium/news.spec.ts/news-details.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/vercel/chromium/news.spec.ts/news-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/vercel/chromium/news.spec.ts/news-list.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/vercel/chromium/projects.spec.ts/project-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/vercel/chromium/projects.spec.ts/project-details.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/vercel/chromium/projects.spec.ts/project-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/vercel/chromium/projects.spec.ts/project-list.png -------------------------------------------------------------------------------- /tests/e2e/__screenshots__/vercel/chromium/team.spec.ts/team-members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/__screenshots__/vercel/chromium/team.spec.ts/team-members.png -------------------------------------------------------------------------------- /tests/e2e/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/home.spec.ts -------------------------------------------------------------------------------- /tests/e2e/news.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/news.spec.ts -------------------------------------------------------------------------------- /tests/e2e/projects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/projects.spec.ts -------------------------------------------------------------------------------- /tests/e2e/team.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tests/e2e/team.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-cms-nextjs-template/HEAD/yarn.lock --------------------------------------------------------------------------------