mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 21:19:12 +00:00
27 lines
631 B
TypeScript
27 lines
631 B
TypeScript
import type { Metadata } from "next";
|
|
import { Toaster } from "@/components/ui/toaster";
|
|
|
|
import "../globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Khoj AI - Automations",
|
|
description: "Use Autoomations with Khoj to simplify the process of running repetitive tasks.",
|
|
icons: {
|
|
icon: "/static/assets/icons/khoj_lantern.ico",
|
|
apple: "/static/assets/icons/khoj_lantern_256x256.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<div>
|
|
{children}
|
|
<Toaster />
|
|
</div>
|
|
);
|
|
}
|