├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── css └── tailwind.css ├── next-env.d.ts ├── package.json ├── postcss.config.mjs ├── public ├── favicon.ico └── img │ ├── benefit-one.png │ ├── benefit-two.png │ ├── brands │ ├── amazon.svg │ ├── microsoft.svg │ ├── netflix.svg │ ├── sony.svg │ └── verizon.svg │ ├── hero.png │ ├── logo.svg │ ├── user1.jpg │ ├── user2.jpg │ ├── user3.jpg │ └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Benefits.tsx │ ├── Container.tsx │ ├── Cta.tsx │ ├── DarkSwitch.tsx │ ├── DisclosureClient.tsx │ ├── Faq.tsx │ ├── Footer.tsx │ ├── Hero.tsx │ ├── Navbar.tsx │ ├── PopupWidget.tsx │ ├── SectionTitle.tsx │ ├── Testimonials.tsx │ ├── Video.tsx │ └── data.js └── types.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/README.md -------------------------------------------------------------------------------- /css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/css/tailwind.css -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/benefit-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/benefit-one.png -------------------------------------------------------------------------------- /public/img/benefit-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/benefit-two.png -------------------------------------------------------------------------------- /public/img/brands/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/brands/amazon.svg -------------------------------------------------------------------------------- /public/img/brands/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/brands/microsoft.svg -------------------------------------------------------------------------------- /public/img/brands/netflix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/brands/netflix.svg -------------------------------------------------------------------------------- /public/img/brands/sony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/brands/sony.svg -------------------------------------------------------------------------------- /public/img/brands/verizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/brands/verizon.svg -------------------------------------------------------------------------------- /public/img/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/hero.png -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/user1.jpg -------------------------------------------------------------------------------- /public/img/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/user2.jpg -------------------------------------------------------------------------------- /public/img/user3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/user3.jpg -------------------------------------------------------------------------------- /public/img/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/public/img/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Benefits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Benefits.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/Cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Cta.tsx -------------------------------------------------------------------------------- /src/components/DarkSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/DarkSwitch.tsx -------------------------------------------------------------------------------- /src/components/DisclosureClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/DisclosureClient.tsx -------------------------------------------------------------------------------- /src/components/Faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Faq.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Hero.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/PopupWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/PopupWidget.tsx -------------------------------------------------------------------------------- /src/components/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/SectionTitle.tsx -------------------------------------------------------------------------------- /src/components/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Testimonials.tsx -------------------------------------------------------------------------------- /src/components/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/Video.tsx -------------------------------------------------------------------------------- /src/components/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/components/data.js -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3templates/nextly-template/HEAD/yarn.lock --------------------------------------------------------------------------------