forked from React-Group/interstellar_ai
Favicons broken | Even with support by Leart
This commit is contained in:
parent
2cac162ad6
commit
ff335f50bc
116 changed files with 684 additions and 30 deletions
|
@ -1,18 +1,19 @@
|
|||
import Header from "./components/Header";
|
||||
|
||||
import { ReactNode } from 'react';
|
||||
|
||||
export const metadata = {
|
||||
title: 'AI Assistant | Interstellar Development',
|
||||
description: 'A little AI chat that is able to assist you in little tasks',
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
export default function RootLayout({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{metadata.title}</title>
|
||||
<meta name="description" content={metadata.description} />
|
||||
{/* Add the favicon here */}
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<body>
|
||||
<main>{children}</main>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue