feat(technologies): add full stack directory and home preview

This commit is contained in:
poyrazavsever
2026-08-31 20:19:42 +03:00
parent ddeab06b45
commit a2538e53c0
10 changed files with 228 additions and 46 deletions
+20
View File
@@ -0,0 +1,20 @@
import { TechnologiesContent } from "@/components/technologies-content";
import { getStaticPageMetadata } from "@/lib/seo";
export async function generateMetadata({
params,
}: {
params: Promise<{ locale: string }>;
}) {
const { locale } = await params;
return getStaticPageMetadata({
locale,
page: "technologies",
path: "/technologies",
});
}
export default function TechnologiesPage() {
return <TechnologiesContent />;
}