AIvoices/frontend-nextjs/app/products-inactive/layout.tsx
2025-04-08 14:05:27 +01:00

18 lines
483 B
TypeScript

import { Metadata } from "next";
export const metadata: Metadata = {
title: "Products",
description: "Explore our products and find the perfect one for you.",
};
export default async function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="flex flex-1 flex-col mx-auto w-full max-w-[1400px] gap-6 sm:py-6 md:flex-row">
<div className="md:max-w-screen-lg mx-auto">{children}</div>
</div>
);
}