├── .eslintrc.json ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json ├── public ├── favicon.ico ├── next.svg └── vercel.svg └── src ├── components └── Layout │ ├── Curve │ ├── anim.js │ ├── index.jsx │ └── style.scss │ ├── Inner │ ├── anim.js │ ├── index.jsx │ └── style.scss │ └── Stairs │ ├── anim.js │ ├── index.jsx │ └── styles.scss ├── pages ├── _app.js ├── _document.js ├── about │ └── index.jsx ├── api │ └── hello.js ├── contact │ └── index.jsx └── index.js └── styles ├── Home.module.css ├── globals.css └── styles.scss /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/Layout/Curve/anim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Curve/anim.js -------------------------------------------------------------------------------- /src/components/Layout/Curve/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Curve/index.jsx -------------------------------------------------------------------------------- /src/components/Layout/Curve/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Curve/style.scss -------------------------------------------------------------------------------- /src/components/Layout/Inner/anim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Inner/anim.js -------------------------------------------------------------------------------- /src/components/Layout/Inner/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Inner/index.jsx -------------------------------------------------------------------------------- /src/components/Layout/Inner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Inner/style.scss -------------------------------------------------------------------------------- /src/components/Layout/Stairs/anim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Stairs/anim.js -------------------------------------------------------------------------------- /src/components/Layout/Stairs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Stairs/index.jsx -------------------------------------------------------------------------------- /src/components/Layout/Stairs/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/components/Layout/Stairs/styles.scss -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/about/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/pages/about/index.jsx -------------------------------------------------------------------------------- /src/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/pages/api/hello.js -------------------------------------------------------------------------------- /src/pages/contact/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/pages/contact/index.jsx -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/styles/Home.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olivierlarose/nextjs-framer-page-transition/HEAD/src/styles/styles.scss --------------------------------------------------------------------------------