37 lines
777 B
TypeScript
37 lines
777 B
TypeScript
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" },
|
|
});
|
|
}
|