├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src ├── app │ ├── @modal │ │ ├── (.)photos │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ └── default.tsx │ ├── ClientLayout.tsx │ ├── default.tsx │ ├── demo │ │ └── page.tsx │ ├── global.css │ ├── layout.tsx │ ├── opengraph-image.png │ ├── page.tsx │ └── photos │ │ └── [id] │ │ └── page.tsx ├── components │ ├── frame │ │ └── Frame.tsx │ ├── github-corner │ │ ├── GithubCorner.tsx │ │ └── styles.module.css │ ├── modal │ │ └── Modal.tsx │ └── provider │ │ └── FrozenRouter.tsx └── photos.ts ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app/@modal/(.)photos/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/@modal/(.)photos/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/@modal/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/@modal/default.tsx -------------------------------------------------------------------------------- /src/app/ClientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/ClientLayout.tsx -------------------------------------------------------------------------------- /src/app/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/default.tsx -------------------------------------------------------------------------------- /src/app/demo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/demo/page.tsx -------------------------------------------------------------------------------- /src/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/global.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/photos/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/app/photos/[id]/page.tsx -------------------------------------------------------------------------------- /src/components/frame/Frame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/components/frame/Frame.tsx -------------------------------------------------------------------------------- /src/components/github-corner/GithubCorner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/components/github-corner/GithubCorner.tsx -------------------------------------------------------------------------------- /src/components/github-corner/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/components/github-corner/styles.module.css -------------------------------------------------------------------------------- /src/components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/components/modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/provider/FrozenRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/components/provider/FrozenRouter.tsx -------------------------------------------------------------------------------- /src/photos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/src/photos.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npostulart/nextgram-with-page-transitions/HEAD/tsconfig.json --------------------------------------------------------------------------------