├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── app ├── api │ ├── domains │ │ └── route.ts │ ├── log.ts │ └── redirect │ │ └── route.ts ├── blog │ ├── [slug] │ │ └── page.tsx │ └── page.tsx ├── globals.css ├── layout.tsx ├── page.tsx ├── robots.ts ├── shopify │ ├── blog │ │ └── page.tsx │ └── page.tsx └── sitemap.ts ├── blog ├── 10-tips-for-a-killer-domain-name.mdx ├── find-the-perfect-domain-name.mdx ├── how-to-brainstorm-domain-names.mdx ├── how-to-choose-the-right-domain-name-extension.mdx ├── how-to-optimize-your-shopify-domain-name-for-seo.mdx ├── how-to-use-a-free-domain-name-generator.mdx ├── the-benefits-of-using-a-shopify-domain-name-generator.mdx └── the-dos-and-donts-of-choosing-a-domain-name.mdx ├── components ├── AdvancedOptions.tsx ├── BlogAll.tsx ├── BlogPreview.tsx ├── CallToAction.tsx ├── Features.tsx ├── Footer.tsx ├── Main.tsx ├── Metadata.tsx └── useDynamicPlaceholder.ts ├── constants ├── affiliates.ts └── tlds.ts ├── images ├── bluehost.svg ├── domaincom.svg ├── godaddy.svg ├── google.svg ├── hostinger.svg ├── namecheap.svg ├── screenshot.png └── shopify.svg ├── mdx-components.tsx ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── favicon.svg └── opengraph.jpg ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/README.md -------------------------------------------------------------------------------- /app/api/domains/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/api/domains/route.ts -------------------------------------------------------------------------------- /app/api/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/api/log.ts -------------------------------------------------------------------------------- /app/api/redirect/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/api/redirect/route.ts -------------------------------------------------------------------------------- /app/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/blog/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/robots.ts -------------------------------------------------------------------------------- /app/shopify/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/shopify/blog/page.tsx -------------------------------------------------------------------------------- /app/shopify/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/shopify/page.tsx -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /blog/10-tips-for-a-killer-domain-name.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/10-tips-for-a-killer-domain-name.mdx -------------------------------------------------------------------------------- /blog/find-the-perfect-domain-name.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/find-the-perfect-domain-name.mdx -------------------------------------------------------------------------------- /blog/how-to-brainstorm-domain-names.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/how-to-brainstorm-domain-names.mdx -------------------------------------------------------------------------------- /blog/how-to-choose-the-right-domain-name-extension.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/how-to-choose-the-right-domain-name-extension.mdx -------------------------------------------------------------------------------- /blog/how-to-optimize-your-shopify-domain-name-for-seo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/how-to-optimize-your-shopify-domain-name-for-seo.mdx -------------------------------------------------------------------------------- /blog/how-to-use-a-free-domain-name-generator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/how-to-use-a-free-domain-name-generator.mdx -------------------------------------------------------------------------------- /blog/the-benefits-of-using-a-shopify-domain-name-generator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/the-benefits-of-using-a-shopify-domain-name-generator.mdx -------------------------------------------------------------------------------- /blog/the-dos-and-donts-of-choosing-a-domain-name.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/blog/the-dos-and-donts-of-choosing-a-domain-name.mdx -------------------------------------------------------------------------------- /components/AdvancedOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/AdvancedOptions.tsx -------------------------------------------------------------------------------- /components/BlogAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/BlogAll.tsx -------------------------------------------------------------------------------- /components/BlogPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/BlogPreview.tsx -------------------------------------------------------------------------------- /components/CallToAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/CallToAction.tsx -------------------------------------------------------------------------------- /components/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/Features.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/Main.tsx -------------------------------------------------------------------------------- /components/Metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/Metadata.tsx -------------------------------------------------------------------------------- /components/useDynamicPlaceholder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/components/useDynamicPlaceholder.ts -------------------------------------------------------------------------------- /constants/affiliates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/constants/affiliates.ts -------------------------------------------------------------------------------- /constants/tlds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/constants/tlds.ts -------------------------------------------------------------------------------- /images/bluehost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/bluehost.svg -------------------------------------------------------------------------------- /images/domaincom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/domaincom.svg -------------------------------------------------------------------------------- /images/godaddy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/godaddy.svg -------------------------------------------------------------------------------- /images/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/google.svg -------------------------------------------------------------------------------- /images/hostinger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/hostinger.svg -------------------------------------------------------------------------------- /images/namecheap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/namecheap.svg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/shopify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/images/shopify.svg -------------------------------------------------------------------------------- /mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/mdx-components.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/opengraph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/public/opengraph.jpg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregives/recommend.domains/HEAD/yarn.lock --------------------------------------------------------------------------------