📌 Next.js – Fonksiyonalite

Next.js App Router, Server/Client Component ayrımı, dinamik routing, veri çekme ve optimizasyonlarıyla modern React geliştirmede güçlü bir altyapı sağlar.


1️⃣ Server vs Client Tarafında Konsol

// server component
export default async function Page() {
  console.log("Bu server konsolu");
  return <div>Hello</div>;
}

2️⃣ Private Dosyalar

_app/
├── _secret.tsx  <- route oluşturulmaz

3️⃣ Image Optimizasyonu – next/image

import Image from "next/image";
<Image src={bg} fill alt="Mountains" className="object-cover" />;

💡 İpucu: Veritabanından gelen resimler için bile fill ve object-cover kullanmak görselin düzgün yerleşmesini sağlar.


4️⃣ Environment Variables