deniz bektaş
This commit is contained in:
36
app/humans.txt/route.ts
Normal file
36
app/humans.txt/route.ts
Normal 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" },
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user