Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions fullstack/blog-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
5 changes: 5 additions & 0 deletions fullstack/blog-app/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<!-- BEGIN:nextjs-agent-rules -->
# This is NOT the Next.js you know

This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices.
<!-- END:nextjs-agent-rules -->
1 change: 1 addition & 0 deletions fullstack/blog-app/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@AGENTS.md
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions fullstack/blog-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
26 changes: 26 additions & 0 deletions fullstack/blog-app/app/api/posts/[id]/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { posts } from "@/data/posts";
import { NextResponse } from "next/server";

type Props = {
params: Promise<{
id: string;
}>;
};

export async function GET(
request: Request,
{ params }: Props
) {
const { id } = await params;

const post = posts.find((p) => p.id === Number(id));

if (!post) {
return NextResponse.json(
{ message: "Post not found" },
{ status: 404 }
);
}

return NextResponse.json(post);
}
6 changes: 6 additions & 0 deletions fullstack/blog-app/app/api/posts/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { posts } from "@/data/posts";
import { NextResponse } from "next/server";

export async function GET() {
return NextResponse.json(posts);
}
Binary file added fullstack/blog-app/app/favicon.ico
Binary file not shown.
26 changes: 26 additions & 0 deletions fullstack/blog-app/app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@import "tailwindcss";

:root {
--background: #ffffff;
--foreground: #171717;
}

@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}

body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
33 changes: 33 additions & 0 deletions fullstack/blog-app/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";

const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});

const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};

export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
</html>
);
}
25 changes: 25 additions & 0 deletions fullstack/blog-app/app/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Link from "next/link";
import { posts } from "@/data/posts";

export default function Home() {
return (
<main className="max-w-3xl mx-auto p-8">
<h1 className="text-4xl font-bold mb-8">Simple Blog</h1>

{posts.map((post) => (
<div key={post.id} className="border rounded-lg p-5 mb-5 shadow">
<h2 className="text-2xl font-semibold">{post.title}</h2>

<p className="mt-2 text-gray-600">{post.excerpt}</p>

<Link
href={`/posts/${post.id}`}
className="text-blue-600 mt-4 inline-block"
>
Read More
</Link>
</div>
))}
</main>
);
}
36 changes: 36 additions & 0 deletions fullstack/blog-app/app/posts/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import Link from "next/link";
import { posts } from "@/data/posts";

type Props = {
params: Promise<{
id: string;
}>;
};

export default async function BlogPost({ params }: Props) {
const { id } = await params;

const post = posts.find((p) => p.id === Number(id));

if (!post) {
return (
<main className="p-8">
<h1>Post Not Found</h1>
</main>
);
}

return (
<main className="max-w-3xl mx-auto p-8">
<h1 className="text-4xl font-bold">{post.title}</h1>

<p className="text-gray-500 mt-2">{post.date}</p>

<p className="mt-6">{post.content}</p>

<Link href="/" className="text-blue-600 mt-8 inline-block">
← Back
</Link>
</main>
);
}
34 changes: 34 additions & 0 deletions fullstack/blog-app/data/posts.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
export const posts = [
{
id: 1,
title: "Getting Started with Next.js",
excerpt: "Learn the basics of Next.js and how to create your first app.",
content:
"Next.js is a React framework that enables server-side rendering and static site generation. It provides file-based routing, optimized performance, and many built-in features for building modern web applications.",
date: "2025-04-15",
},
{
id: 2,
title: "Styling in Next.js",
excerpt: "Different ways to style your Next.js application.",
content:
"Next.js supports Tailwind CSS, CSS Modules, global CSS, and many other styling solutions that make creating beautiful user interfaces simple.",
date: "2025-04-16",
},
{
id: 3,
title: "Dynamic Routing",
excerpt: "Learn how dynamic routing works.",
content:
"Dynamic routing allows pages to be generated from URL parameters, making it ideal for blogs, product pages, and user profiles.",
date: "2025-04-17",
},
{
id: 4,
title: "API Routes",
excerpt: "Create backend endpoints with Next.js.",
content:
"API Routes let developers build backend functionality directly inside a Next.js application without requiring a separate server.",
date: "2025-04-18",
},
];
18 changes: 18 additions & 0 deletions fullstack/blog-app/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTs from "eslint-config-next/typescript";

const eslintConfig = defineConfig([
...nextVitals,
...nextTs,
// Override default ignores of eslint-config-next.
globalIgnores([
// Default ignores of eslint-config-next:
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
]),
]);

export default eslintConfig;
7 changes: 7 additions & 0 deletions fullstack/blog-app/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
Loading