ab-group-llc-landing-page/app/contact/layout.tsx

14 lines
345 B
TypeScript

export const metadata = {
title: "Contact Us | AB Group LLC",
description:
"Get in touch with AB Group LLC for QuickBooks consulting, training, and support. Call us or fill out our contact form for a free consultation.",
};
export default function ContactLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}