17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
import type { Metadata } from "next";
|
|
import ProductsClient from "./ProductsClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Product Catalog | VG Fence Products",
|
|
description: "Explore our extensive range of professional-grade fencing and railing materials. From chain link to ornamental steel and composite panels.",
|
|
alternates: {
|
|
canonical: "/products"
|
|
}
|
|
};
|
|
|
|
import { redirect } from "next/navigation";
|
|
|
|
export default function ProductsPage() {
|
|
redirect("/products/chain-link-fence");
|
|
}
|