almaze-app/app/layout.tsx

37 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-02-11 21:52:34 +05:30
// import type { Metadata } from "next";
// import localFont from "next/font/local";
import { Inter } from 'next/font/google';
import './globals.css';
import { Metadata } from 'next';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
2025-02-20 23:15:40 +05:30
title: "Soviro: Self Evolving AI that Helps You Complete Mundane Tasks",
2025-02-11 21:52:34 +05:30
description:
2025-02-20 23:15:40 +05:30
"The autoagentic AGI. Soviro is a self-evolving AGI made of agents that collaborate, and build new agents as needed, in order to complete tasks for a user.",
2025-02-11 21:52:34 +05:30
openGraph: {
type: "website",
url: "https://e8ogg8s4k8c84osoo8wo4ks4.dev3vds1.link/",
2025-02-20 23:15:40 +05:30
title: "Soviro: Self Evolving AI that Helps You Complete Mundane Tasks",
2025-02-11 21:52:34 +05:30
description:
2025-02-20 23:15:40 +05:30
"The autoagentic AGI. Soviro is a self-evolving AGI made of agents that collaborate, and build new agents as needed, in order to complete tasks for a user.",
2025-02-11 21:52:34 +05:30
images: `https://ai-proj-04.vercel.app/og-banner.png`,
},
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>
{children}
</body>
</html>
);}