├── .env ├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── src ├── app │ ├── about │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── not-found.tsx │ ├── opengraph-image.png │ ├── page.tsx │ ├── posts │ │ └── [postId] │ │ │ └── page.tsx │ ├── privacy │ │ └── page.tsx │ ├── robots.ts │ └── sitemap.ts ├── assets │ └── logo.png ├── components │ ├── ClapButton.tsx │ ├── Footer.tsx │ └── Header.tsx ├── lib │ └── utils.ts └── models │ └── BlogPost.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_BASE_URL="https://myawesomeblog.com" -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/about/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/posts/[postId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/posts/[postId]/page.tsx -------------------------------------------------------------------------------- /src/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/ClapButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/components/ClapButton.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/models/BlogPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/src/models/BlogPost.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-seo/HEAD/tsconfig.json --------------------------------------------------------------------------------