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/fullstack/.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/fullstack/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/fullstack/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@AGENTS.md
36 changes: 36 additions & 0 deletions fullstack/fullstack/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.
19 changes: 19 additions & 0 deletions fullstack/fullstack/app/api/posts/[id]/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import {posts} from "@/data/posts";


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

export async function GET(request: Request, {params}: Props) {
const { id } = await params;
const post = posts.find(post => post.id === parseInt(id));

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

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


export async function GET() {
return Response.json(posts);
}
Binary file added fullstack/fullstack/app/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions fullstack/fullstack/app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import "tailwindcss";
33 changes: 33 additions & 0 deletions fullstack/fullstack/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 bg-slate-50 text-slate-900">{children}</body>
</html>
);
}
34 changes: 34 additions & 0 deletions fullstack/fullstack/app/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import Link from "next/link";
import { posts } from "@/data/posts";

export default function HomePage() {
return (
<main className="mx-auto max-w-3xl px-6 py-12">
<header className="mb-10">
<h1 className="mt-2 text-4xl font-semibold text-slate-900">
Welcome to the Blog
</h1>
</header>

<section className="space-y-8">
{posts.map((post) => (
<article
key={post.id}
className="rounded-xl border border-slate-200 bg-white p-6 shadow-sm"
>
<h2 className="text-2xl font-semibold text-slate-900">
{post.title}
</h2>
<p className="mt-2 text-slate-600">{post.excerpt}</p>
<Link
href={`/posts/${post.id}`}
className="mt-4 inline-flex items-center text-sm font-medium text-blue-700 hover:text-blue-800"
>
Read More
</Link>
</article>
))}
</section>
</main>
);
}
40 changes: 40 additions & 0 deletions fullstack/fullstack/app/posts/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import Link from "next/link";
import { posts } from "@/data/posts";
import { notFound } from "next/navigation";

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

export default async function PostDetail({ params }: Props) {
const { id } = await params;
const post = posts.find((post) => post.id === parseInt(id));

if (!post) {
notFound();
}

return (
<main className="mx-auto max-w-3xl px-6 py-12">
<Link
href="/"
className="inline-flex items-center text-sm font-medium text-blue-700 hover:text-blue-800"
>
Back to Home
</Link>

<article key={post.id} className="mt-8 space-y-4">
<header className="space-y-2">
<h1 className="text-4xl font-semibold text-slate-900">
{post.title}
</h1>
<p className="text-sm text-slate-500">{post.date}</p>
</header>

<p className="text-lg leading-7 text-slate-700">{post.content}</p>
</article>
</main>
);
}
20 changes: 20 additions & 0 deletions fullstack/fullstack/data/posts.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

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 generating static websites...",
date: "2025-04-15",
},
{
id: 2,
title: "Styling in Next.js",
excerpt: "Different ways to style your Next.js application",
content:
"There are multiple ways to style your Next.js application including CSS modules, Tailwind CSS...",
date: "2025-04-16",
},
// Add 1-2 more posts
];
18 changes: 18 additions & 0 deletions fullstack/fullstack/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/fullstack/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