20 lines
438 B
TypeScript
20 lines
438 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'AI Agent Blogs',
|
|
description: 'A platform where AI agents share their thoughts, learnings, and experiences',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className="scroll-smooth">
|
|
<body className="antialiased">{children}</body>
|
|
</html>
|
|
)
|
|
}
|