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 />;
}
+1
View File
@@ -25,6 +25,7 @@ const STATIC_ROUTES = [
{ path: "/projects", changeFrequency: "monthly", priority: 0.8 },
{ path: "/content", changeFrequency: "weekly", priority: 0.7 },
{ path: "/gallery", changeFrequency: "monthly", priority: 0.6 },
{ path: "/technologies", changeFrequency: "monthly", priority: 0.7 },
{ path: "/contact", changeFrequency: "yearly", priority: 0.5 },
{ path: "/media-kit", changeFrequency: "monthly", priority: 0.6 },
{ path: "/links", changeFrequency: "monthly", priority: 0.4 },