Skip to content

Commit 7871090

Browse files
committed
fix(metadata): add metadata template
1 parent 1bbbea2 commit 7871090

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

app/layout.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
import { ReactNode } from "react";
22
import "@/app/globals.css";
3+
import { Metadata } from "next";
4+
5+
export const metadata: Metadata = {
6+
title: {
7+
template: "%s | Starter Kit",
8+
default: "Starter Kit"
9+
},
10+
description: "Starter Kit"
11+
};
312

413
type Props = {
514
children: ReactNode;

0 commit comments

Comments
 (0)