├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── cucopydemo.gif ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── apple-touch-icon.png ├── desktop-screenshot.jpg ├── favicon.ico ├── icon-192-maskable.png ├── icon-192.png ├── icon-512-maskable.png ├── icon-512.png ├── logo.svg ├── manifest.json ├── mobile-screenshot.jpg ├── ogimage.jpg ├── sw.js ├── workbox-e43f5367.js └── workbox-e43f5367.js.map ├── src ├── components │ ├── FeedbackDialog │ │ └── index.tsx │ ├── Header │ │ └── index.tsx │ ├── HomeSEO.tsx │ ├── PageLayout │ │ └── index.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── label.tsx │ │ └── textarea.tsx ├── lib │ ├── notionclient.ts │ └── utils.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── feedback.ts │ │ └── hello.ts │ └── index.tsx ├── styles │ └── globals.css └── utils │ └── helpers.ts ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/components.json -------------------------------------------------------------------------------- /cucopydemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/cucopydemo.gif -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/desktop-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/desktop-screenshot.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-192-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/icon-192-maskable.png -------------------------------------------------------------------------------- /public/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/icon-192.png -------------------------------------------------------------------------------- /public/icon-512-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/icon-512-maskable.png -------------------------------------------------------------------------------- /public/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/icon-512.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mobile-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/mobile-screenshot.jpg -------------------------------------------------------------------------------- /public/ogimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/ogimage.jpg -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/workbox-e43f5367.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/workbox-e43f5367.js -------------------------------------------------------------------------------- /public/workbox-e43f5367.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/public/workbox-e43f5367.js.map -------------------------------------------------------------------------------- /src/components/FeedbackDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/FeedbackDialog/index.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/HomeSEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/HomeSEO.tsx -------------------------------------------------------------------------------- /src/components/PageLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/PageLayout/index.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/lib/notionclient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/lib/notionclient.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/feedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/pages/api/feedback.ts -------------------------------------------------------------------------------- /src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/pages/api/hello.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidAmunga/cucopy/HEAD/tsconfig.json --------------------------------------------------------------------------------