Skip to content

Commit 8fb5040

Browse files
add meta data to import page
1 parent 93318b2 commit 8fb5040

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

editor/pages/import/index.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1+
import Head from "next/head";
12
import React from "react";
23
import { HomeInput } from "scaffolds/home-input";
34

45
export default function ImportPage() {
5-
return <HomeInput />;
6+
return (
7+
<>
8+
<Head>
9+
<title>Grida - Import Design</title>
10+
<meta name="description" content="Import your design from Figma" />
11+
</Head>
12+
<HomeInput />
13+
</>
14+
);
615
}

0 commit comments

Comments
 (0)