Skip to content

Commit 4b6a70d

Browse files
Oops add description
1 parent dc90ba6 commit 4b6a70d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/pages/tools/built-in/index.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ import QuickLinkCards from "@/components/QuickLinks/QuickLinkCards";
77

88
const pageName = "Built In Tools";
99

10-
export function About({ appProps }: { appProps: AppProps }): React.ReactNode {
10+
export function BuiltInTools({
11+
appProps,
12+
}: {
13+
appProps: AppProps;
14+
}): React.ReactNode {
1115
const quickLinks: QuickLink[] = [
1216
{
1317
name: "Image Importer (beta)",
@@ -48,6 +52,7 @@ export function About({ appProps }: { appProps: AppProps }): React.ReactNode {
4852
return (
4953
<Layout
5054
title={pageName}
55+
description="Use Awesome Arcade's tools to make your game development experience even better!"
5156
currentPage={pageName}
5257
appProps={appProps}
5358
breadCrumbs={[
@@ -84,4 +89,4 @@ export async function getStaticProps(): Promise<{
8489
};
8590
}
8691

87-
export default About;
92+
export default BuiltInTools;

0 commit comments

Comments
 (0)