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
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,14 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# dafont stitch fonts — license pending, redistribution prohibited
# (OFL-licensed fonts in src/fonts/ ARE committed)
src/fonts/PatchworkStitchlings.ttf
src/fonts/KawaiiStitch.ttf

# local screenshots / browser artifacts
.playwright-mcp/
*.png
!public/**/*.png
!src/app/icon.png
42 changes: 18 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,30 @@
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).
# patchworklabs.org

## Getting Started
The website for [Patchwork Labs](https://patchworklabs.org), a 501(c)(3) nonprofit community of makers.

First, run the development server:
Built with Next.js (App Router), Tailwind CSS 4, and TypeScript.

## Development

```bash
npm run dev
# or
yarn dev
# or
pnpm install
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
Open [http://localhost:3000](http://localhost:3000).

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

- [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.
- `src/app/page.tsx` — home page
- `src/app/ganymede/page.tsx` — Project Ganymede
- `src/app/team/page.tsx` — team bios (photos live in `public/team/`)
- `src/lib/site.ts` — shared links and contact addresses
- `src/app/globals.css` — palette (derived from the logo) and stitch/patch styles

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

## 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.
```bash
pnpm build
```

Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
Static output; deploys anywhere Next.js runs (e.g. Vercel).
11 changes: 10 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
async redirects() {
return [
// Legacy location → canonical RFC 9116 path
{
source: "/security.txt",
destination: "/.well-known/security.txt",
permanent: true,
},
];
},
};

export default nextConfig;
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,20 @@
"lint": "next lint"
},
"dependencies": {
"geist": "1.7.2",
"next": "15.4.8",
"react": "19.1.0",
"react-dom": "19.1.0",
"next": "15.4.8"
"react-dom": "19.1.0"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4",
"eslint": "^9",
"@eslint/eslintrc": "3.3.6",
"@tailwindcss/postcss": "4.3.2",
"@types/node": "20.19.43",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"eslint": "9.39.5",
"eslint-config-next": "15.4.6",
"@eslint/eslintrc": "^3"
"tailwindcss": "4.3.2",
"typescript": "5.9.3"
}
}
Loading