├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── command-palette.svg ├── devtools.svg ├── favicon.ico ├── loading-screen.svg ├── main-screen.svg └── thank-you-codesandbox.md ├── src ├── components │ └── gtag.tsx ├── icons │ ├── branch.tsx │ ├── flow.tsx │ ├── github.tsx │ ├── intellisense.tsx │ ├── keyboard.tsx │ ├── magic-branch.tsx │ ├── prebuilds.tsx │ └── preview.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── gradientssss.tsx │ └── index.tsx ├── sections │ ├── collaboration.tsx │ ├── features.tsx │ ├── hero.tsx │ ├── more-features.tsx │ ├── no-lockin.tsx │ ├── same-page.tsx │ └── streamlined-experience.tsx ├── styles │ └── globals.css └── utils │ ├── gtag.ts │ └── motion.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/command-palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/public/command-palette.svg -------------------------------------------------------------------------------- /public/devtools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/public/devtools.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/loading-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/public/loading-screen.svg -------------------------------------------------------------------------------- /public/main-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/public/main-screen.svg -------------------------------------------------------------------------------- /public/thank-you-codesandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/public/thank-you-codesandbox.md -------------------------------------------------------------------------------- /src/components/gtag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/components/gtag.tsx -------------------------------------------------------------------------------- /src/icons/branch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/branch.tsx -------------------------------------------------------------------------------- /src/icons/flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/flow.tsx -------------------------------------------------------------------------------- /src/icons/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/github.tsx -------------------------------------------------------------------------------- /src/icons/intellisense.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/intellisense.tsx -------------------------------------------------------------------------------- /src/icons/keyboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/keyboard.tsx -------------------------------------------------------------------------------- /src/icons/magic-branch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/magic-branch.tsx -------------------------------------------------------------------------------- /src/icons/prebuilds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/prebuilds.tsx -------------------------------------------------------------------------------- /src/icons/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/icons/preview.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/gradientssss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/pages/gradientssss.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/sections/collaboration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/collaboration.tsx -------------------------------------------------------------------------------- /src/sections/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/features.tsx -------------------------------------------------------------------------------- /src/sections/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/hero.tsx -------------------------------------------------------------------------------- /src/sections/more-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/more-features.tsx -------------------------------------------------------------------------------- /src/sections/no-lockin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/no-lockin.tsx -------------------------------------------------------------------------------- /src/sections/same-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/same-page.tsx -------------------------------------------------------------------------------- /src/sections/streamlined-experience.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/sections/streamlined-experience.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/utils/gtag.ts -------------------------------------------------------------------------------- /src/utils/motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/src/utils/motion.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielwuachin/nextjs-animations/HEAD/yarn.lock --------------------------------------------------------------------------------