- Replace animated blob/wave/noise backdrop with clean static gradient (radial ellipse highlights + linear fade) in hero-motion-backdrop - Remove all framer-motion from background layer; delete unused CSS classes: hero-blob, hero-sheet-glow, hero-sheet-wave, hero-sheet-noise, hero-title-shift keyframe, and responsive blob media queries - Add framer-motion stagger entrance to HeroContentMotion, HeroMotionItem, and HeroTitle (slide-up + fade on mount) - Refactor coming-soon page to use HeroContentMotion/HeroMotionItem instead of MotionFade (whileInView unreliable above the fold) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { getLocale, getTranslations } from "next-intl/server";
|
|
import { notFound } from "next/navigation";
|
|
|
|
import { Container } from "@/components/layout/container";
|
|
import { PageHero } from "@/components/layout/page-hero";
|
|
import { PortfolioProjectDetail } from "@/components/site/portfolio-project-detail";
|
|
import { getSiteSettings } from "@/lib/app-config";
|
|
import { buildLocalizedMetadata } from "@/lib/metadata";
|
|
import { resolveLocale } from "@/lib/locale";
|
|
import {
|
|
getLocalizedValue,
|
|
getPublishedPortfolioProjectBySlug,
|
|
} from "@/lib/portfolio";
|
|
|
|
type PortfolioItemPageProps = {
|
|
params: Promise<{
|
|
locale: string;
|
|
slug: string;
|
|
}>;
|
|
};
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export async function generateMetadata({ params }: PortfolioItemPageProps): Promise<Metadata> {
|
|
const { slug } = await params;
|
|
const siteSettings = await getSiteSettings();
|
|
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
|
|
const item = await getPublishedPortfolioProjectBySlug(slug);
|
|
|
|
if (!item) {
|
|
return await buildLocalizedMetadata({
|
|
locale: localeKey,
|
|
pathname: `/portfolio/${slug}`,
|
|
title: "Portfolio",
|
|
description: "Portfolio item",
|
|
});
|
|
}
|
|
|
|
return await buildLocalizedMetadata({
|
|
locale: localeKey,
|
|
pathname: `/portfolio/${slug}`,
|
|
title: getLocalizedValue(item.title, localeKey),
|
|
description: getLocalizedValue(item.summary, localeKey),
|
|
});
|
|
}
|
|
|
|
export default async function PortfolioItemPage({
|
|
params,
|
|
}: PortfolioItemPageProps) {
|
|
const { slug } = await params;
|
|
const siteSettings = await getSiteSettings();
|
|
const localeKey = resolveLocale(await getLocale().catch(() => siteSettings.defaultLocale), siteSettings.defaultLocale);
|
|
const item = await getPublishedPortfolioProjectBySlug(slug);
|
|
|
|
if (!item) {
|
|
notFound();
|
|
}
|
|
|
|
const t = await getTranslations({ locale: localeKey, namespace: "portfolioDetail" });
|
|
|
|
return (
|
|
<>
|
|
<PageHero />
|
|
|
|
<Container size="wide" className="pb-12 lg:pb-16">
|
|
<PortfolioProjectDetail
|
|
item={item}
|
|
locale={localeKey}
|
|
defaultLocale={siteSettings.defaultLocale}
|
|
t={t}
|
|
/>
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|