├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── about │ │ └── page.tsx │ ├── community │ │ └── page.tsx │ ├── company │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── pricing │ │ └── page.tsx └── components │ ├── nav-bar │ └── NavBar.tsx │ └── utils │ └── TransitionLink.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/community/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/community/page.tsx -------------------------------------------------------------------------------- /src/app/company/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/company/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/app/pricing/page.tsx -------------------------------------------------------------------------------- /src/components/nav-bar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/components/nav-bar/NavBar.tsx -------------------------------------------------------------------------------- /src/components/utils/TransitionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/src/components/utils/TransitionLink.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomIsLoading/next-14-page-transitions/HEAD/tsconfig.json --------------------------------------------------------------------------------