├── .env ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── timeline │ ├── [tweetid] │ ├── not-found.tsx │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ └── page.tsx ├── components ├── addComment.tsx ├── commentsList.tsx ├── tweet.tsx ├── tweetActions.tsx └── twitterNavbar.tsx ├── lib ├── prisma.ts └── time-ago.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma ├── dev.db └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "jira-plugin.workingProject": "" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/timeline/[tweetid]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/timeline/[tweetid]/not-found.tsx -------------------------------------------------------------------------------- /app/timeline/[tweetid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/timeline/[tweetid]/page.tsx -------------------------------------------------------------------------------- /app/timeline/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/timeline/layout.tsx -------------------------------------------------------------------------------- /app/timeline/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/timeline/loading.tsx -------------------------------------------------------------------------------- /app/timeline/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/app/timeline/page.tsx -------------------------------------------------------------------------------- /components/addComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/components/addComment.tsx -------------------------------------------------------------------------------- /components/commentsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/components/commentsList.tsx -------------------------------------------------------------------------------- /components/tweet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/components/tweet.tsx -------------------------------------------------------------------------------- /components/tweetActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/components/tweetActions.tsx -------------------------------------------------------------------------------- /components/twitterNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/components/twitterNavbar.tsx -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/time-ago.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/lib/time-ago.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/prisma/dev.db -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/nextjs-rsc/HEAD/tsconfig.json --------------------------------------------------------------------------------