← back to Designer Wallcoverings
DW-Agents/dw-agents/agent-marketing-nextjs/app/layout.tsx
28 lines
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
subsets: ["latin"],
variable: "--font-sans",
});
export const metadata: Metadata = {
title: "DW Marketing Agent - Content Creation & Social Media",
description: "AI-powered marketing content creation for Designer Wallcoverings",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${inter.variable} antialiased`}>
{children}
</body>
</html>
);
}