15 lines
516 B
TypeScript
15 lines
516 B
TypeScript
import type { Metadata } from "next";
|
||
import ContactClient from "./ContactClient";
|
||
|
||
export const metadata: Metadata = {
|
||
title: "Contact VG Fence Products | Kitchener–Waterloo Ontario",
|
||
description: "Contact VG Fence Products for contractor pricing, fence supply, temp fence rental, wood staining, and 2D drawing services. Email info@vgfenceproducts.com. Response within 2 business hours.",
|
||
alternates: {
|
||
canonical: "/contact"
|
||
}
|
||
};
|
||
|
||
export default function ContactPage() {
|
||
return <ContactClient />;
|
||
}
|