Initial commit

This commit is contained in:
Rami Bitar
2026-04-11 14:03:15 -04:00
commit e60949ce4f
75 changed files with 10730 additions and 0 deletions

26
app/layout.tsx Normal file
View File

@@ -0,0 +1,26 @@
import type { Metadata } from 'next';
import { Toaster } from 'sonner';
import './globals.css';
export const metadata: Metadata = {
title: 'Frontend',
description: 'Start prompting',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body className="m-0 p-0 font-body">
{children}
<Toaster />
</body>
</html>
);
}