mirror of
https://github.com/SkalaraAI/beta.git
synced 2025-04-09 15:00:20 -04:00
26 lines
551 B
TypeScript
26 lines
551 B
TypeScript
import "./globals.css";
|
|
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Skalara",
|
|
description:
|
|
"Automated project management for tech teams and indie developers.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
<main className="flex flex-col">{children}</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|