15 lines
450 B
TypeScript
15 lines
450 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"
|
|
}
|
|
};
|
|
|
|
export default function ProductsPage() {
|
|
return <ProductsClient />;
|
|
}
|