deniz bektaş

This commit is contained in:
2026-04-03 16:20:51 +03:00
parent d0cd1c7ee3
commit fb6933edd0
53 changed files with 4742 additions and 98 deletions

36
app/humans.txt/route.ts Normal file
View File

@@ -0,0 +1,36 @@
import { NextResponse } from "next/server";
export async function GET() {
const content = `/* TEAM */
Developer / Writer: Deniz Bektaş
Contact: info@denizbektas.com.tr
Mastodon: @denizbektas@mastadon.org
Location: Türkiye
/* THANKS */
Next.js team
Vercel
The open source community
Everyone who taught me something
/* SITE */
Last update: 2026/04/03
Language: Turkish / English
Doctype: HTML5
IDE: Neovim
Standards: CSS3, JavaScript ES2024
Components: React, Next.js
Software: Cachy OS, Parrot OS, macOS
/* FOR HUMANS */
This site was built by a human, for humans.
No AI-generated content. No dark patterns.
Just someone sharing their journey.
humanstxt.org
`;
return new NextResponse(content, {
headers: { "Content-Type": "text/plain; charset=utf-8" },
});
}