├── .eslintrc.json ├── .github └── workflows │ └── nextjs.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app ├── globals.css ├── head.tsx ├── layout.tsx ├── page.tsx └── providers.tsx ├── components ├── emoji │ └── Emoji.tsx ├── hero │ └── Hero.tsx ├── navbar │ └── Navbar.tsx ├── scrolltotop │ └── ScrollToTopButton.tsx └── search │ └── Search.tsx ├── next.config.js ├── package.json ├── pages └── api │ └── hello.ts ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── assets │ └── bg.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-150x150.png ├── safari-pinned-tab.svg └── site.webmanifest ├── tailwind.config.js ├── tsconfig.json ├── utils └── emoji.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/nextjs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/.github/workflows/nextjs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/README.md -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/app/head.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /components/emoji/Emoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/components/emoji/Emoji.tsx -------------------------------------------------------------------------------- /components/hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/components/hero/Hero.tsx -------------------------------------------------------------------------------- /components/navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/components/navbar/Navbar.tsx -------------------------------------------------------------------------------- /components/scrolltotop/ScrollToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/components/scrolltotop/ScrollToTopButton.tsx -------------------------------------------------------------------------------- /components/search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/components/search/Search.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/assets/bg.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/utils/emoji.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithEnjoy/React-OHMOJI/HEAD/yarn.lock --------------------------------------------------------------------------------