This repository has been archived on 2026-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
synthetic-consumer-data/app/layout.tsx
Riccardo Senica ef333ae7f2
Some checks failed
Deploy / lint-build-deploy (push) Failing after 7s
feat: switch to llama on ovh
2026-01-19 20:06:09 +01:00

21 lines
423 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'Synthetic Consumers Data Generator',
description:
'Generate realistic synthetic consumers and their weekly purchase behaviors using AI'
};
export default function RootLayout({
children
}: {
children: React.ReactNode;
}) {
return (
<html lang='en'>
<body>{children}</body>
</html>
);
}