fibe-me/app/layout.jsx

15 lines
428 B
JavaScript

import './globals.css'
export const metadata = {
title: 'Fibe — Your entire stack, live in seconds.',
description: 'Fibe orchestrates fullstack environments from any git repo. Web apps, APIs, databases, AI agents, preview envs and jobs — on your infra, zero DevOps.',
}
export default function RootLayout({ children }) {
return (
<html lang="en" className="dark">
<body>{children}</body>
</html>
)
}