Added dependencies. Updated readme.
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
import Document, { Html, Main, NextScript, Head } from 'next/document'
|
||||
import Footer from '../components/layout/Footer'
|
||||
import React from 'react'
|
||||
import Document, { Html, Main, NextScript, Head } from "next/document";
|
||||
import Footer from "../components/layout/Footer";
|
||||
import React from "react";
|
||||
|
||||
class MyDocument extends Document {
|
||||
render(): JSX.Element {
|
||||
return (
|
||||
<Html>
|
||||
<Head>
|
||||
<meta name="description" content="The new and improved Lucid Creations Media website." />
|
||||
<meta
|
||||
name="description"
|
||||
content="The new and improved Lucid Creations Media website."
|
||||
/>
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
@@ -15,8 +18,8 @@ class MyDocument extends Document {
|
||||
</body>
|
||||
<Footer />
|
||||
</Html>
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default MyDocument
|
||||
export default MyDocument;
|
||||
|
||||
Reference in New Issue
Block a user