37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import type { Metadata } from "next";
|
||
import { Inter } from "next/font/google";
|
||
import "./globals.css";
|
||
|
||
const inter = Inter({ subsets: ["latin"] });
|
||
|
||
export const metadata: Metadata = {
|
||
title: "WrenchBoard: Reward Accomplishments | Get Family Engaged",
|
||
description: "Empower families to reward accomplishment, set goals, and encourage kids to understand goals",
|
||
};
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html lang="en">
|
||
<meta
|
||
name="description"
|
||
content="WrenchBoard.com is the place to set family goals and reward achievements. Find tasks to earn from, or send tasks for others to perform for you."
|
||
/>
|
||
<meta
|
||
name="title"
|
||
content="WrenchBoard: Reward Accomplishments | Get Family Engaged"
|
||
/>
|
||
<meta
|
||
name="keywords"
|
||
content="Empower families to reward accomplishment, set goals, and encourage kids to understand goals, earning, and the benefit of savings – in one app experience."
|
||
/>
|
||
<meta property="og:image" content="%PUBLIC_URL%/favicon-32x32.png" />
|
||
|
||
<body className={inter.className}>{children}</body>
|
||
</html>
|
||
);
|
||
}
|