feat(technologies): add full stack directory and home preview
This commit is contained in:
@@ -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 />;
|
||||
}
|
||||
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user