├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ └── email │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components └── contact.tsx ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js ├── tsconfig.json └── utils └── send-email.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/README.md -------------------------------------------------------------------------------- /app/api/email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/app/api/email/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/components/contact.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/send-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteCrak07/nextjs-contact-form/HEAD/utils/send-email.ts --------------------------------------------------------------------------------