19 lines
663 B
TypeScript
19 lines
663 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Fence & Deck Staining Service | KWC Ontario | VG Fence",
|
|
description: "Professional fence staining, deck staining, and wood restoration using Expert Stain & Seal. Cedar, pressure treated, and all wood types. Serving KWC and surrounding Ontario regions.",
|
|
keywords: "fence staining Kitchener, deck staining Waterloo, wood staining service KWC, fence staining service Ontario, deck staining Cambridge",
|
|
alternates: {
|
|
canonical: "/services",
|
|
},
|
|
};
|
|
|
|
export default function ServicesLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <>{children}</>;
|
|
}
|