2e001680bf
- Çözümler: solutions tablosu, /cozumler liste + detay sayfası, anasayfa bölümü, tam admin CRUD (/admin/cozumler), header & footer linkleri, projelerde solution_slug ilişkisi, services-grid genelleştirildi - Mobil menü (hamburger drawer) eklendi — header artık < lg'de gezilebilir - Site ayarları parser: textarea CRLF (\r\n) normalizasyonu — neden biz, süreç adımları, değerler ve SSS blokları artık doğru parçalanıyor - homepage_faq + garanti (title/description/items) saveSiteSettings'e bağlandı (daha önce hiç kaydedilmiyordu)
125 lines
4.0 KiB
TypeScript
125 lines
4.0 KiB
TypeScript
import type { Metadata } from "next";
|
||
import { notFound } from "next/navigation";
|
||
import { CheckCircle2 } from "lucide-react";
|
||
import { renderContent } from "@/lib/content-render";
|
||
import { getSolutionBySlug, getSiteSettings, listProjects } from "@/lib/data";
|
||
import { buildMetadata } from "@/lib/seo";
|
||
import { ProjectsGrid } from "@/components/projects-grid";
|
||
import { SectionTitle } from "@/components/section-title";
|
||
import { FaqList } from "@/components/faq-list";
|
||
import { SolutionHero } from "@/components/solution-hero";
|
||
import { SolutionSidebar } from "@/components/solution-sidebar";
|
||
import type { FaqItem } from "@/lib/types";
|
||
|
||
export async function generateMetadata({
|
||
params,
|
||
}: {
|
||
params: Promise<{ slug: string }>;
|
||
}): Promise<Metadata> {
|
||
const { slug } = await params;
|
||
const solution = await getSolutionBySlug(slug);
|
||
if (!solution) return { title: "Çözüm bulunamadı" };
|
||
return buildMetadata(`/cozumler/${slug}`, {
|
||
title: solution.title,
|
||
description: solution.description.slice(0, 160),
|
||
});
|
||
}
|
||
|
||
function parseFaq(items?: string[] | null): FaqItem[] {
|
||
if (!items) return [];
|
||
const out: FaqItem[] = [];
|
||
for (const raw of items) {
|
||
try {
|
||
const obj = JSON.parse(raw) as Partial<FaqItem>;
|
||
if (obj.q && obj.a) out.push({ q: obj.q, a: obj.a });
|
||
} catch {
|
||
const [q, a] = raw.split("|||").map((s) => s.trim());
|
||
if (q && a) out.push({ q, a });
|
||
}
|
||
}
|
||
return out;
|
||
}
|
||
|
||
export default async function SolutionDetailPage({
|
||
params,
|
||
}: {
|
||
params: Promise<{ slug: string }>;
|
||
}) {
|
||
const { slug } = await params;
|
||
const solution = await getSolutionBySlug(slug);
|
||
if (!solution) notFound();
|
||
|
||
const [relatedProjects, settings] = await Promise.all([
|
||
listProjects({ solutionSlug: slug, limit: 6 }),
|
||
getSiteSettings(),
|
||
]);
|
||
|
||
const faqItems = parseFaq(solution.faq);
|
||
const html = renderContent(solution.content);
|
||
|
||
return (
|
||
<>
|
||
<SolutionHero solution={solution} settings={settings} />
|
||
|
||
<div className="mx-auto grid max-w-7xl gap-12 px-6 py-16 lg:grid-cols-[1.5fr_1fr]">
|
||
<div>
|
||
{solution.features && solution.features.length > 0 && (
|
||
<section className="mb-12">
|
||
<h2 className="text-2xl font-bold text-[var(--navy)]">
|
||
Bu çözüm kapsamında
|
||
</h2>
|
||
<ul className="mt-6 grid gap-3 sm:grid-cols-2">
|
||
{solution.features.map((f) => (
|
||
<li
|
||
key={f}
|
||
className="flex items-start gap-2 rounded-xl border border-[var(--border)] bg-white p-4"
|
||
>
|
||
<CheckCircle2 className="mt-0.5 size-5 shrink-0 text-[var(--sky-600)]" />
|
||
<span className="text-sm text-[var(--foreground)]">{f}</span>
|
||
</li>
|
||
))}
|
||
</ul>
|
||
</section>
|
||
)}
|
||
|
||
{html && (
|
||
<article
|
||
className="prose prose-lg max-w-none text-[var(--foreground)]"
|
||
dangerouslySetInnerHTML={{ __html: html }}
|
||
/>
|
||
)}
|
||
|
||
{faqItems.length > 0 && (
|
||
<section className="mt-12">
|
||
<h2 className="text-2xl font-bold text-[var(--navy)]">
|
||
Sıkça sorulan sorular
|
||
</h2>
|
||
<div className="mt-6">
|
||
<FaqList items={faqItems} />
|
||
</div>
|
||
</section>
|
||
)}
|
||
</div>
|
||
|
||
<SolutionSidebar currentSlug={slug} />
|
||
</div>
|
||
|
||
{relatedProjects.length > 0 && (
|
||
<section className="border-t border-[var(--border)] bg-[var(--navy-50)]/40 py-20">
|
||
<div className="mx-auto max-w-7xl px-6">
|
||
<SectionTitle
|
||
align="left"
|
||
eyebrow="Referanslar"
|
||
title={`${solution.title} alanındaki projelerimiz`}
|
||
description="Bu çözümde tamamladığımız işlerden seçkiler."
|
||
/>
|
||
<div className="mt-10">
|
||
<ProjectsGrid projects={relatedProjects} />
|
||
</div>
|
||
</div>
|
||
</section>
|
||
)}
|
||
</>
|
||
);
|
||
}
|