Added dependencies. Updated readme.

This commit is contained in:
Lucid Kobold
2022-04-08 11:43:48 -05:00
parent dc8aa5cd20
commit 1969cb7161
314 changed files with 4103 additions and 2986 deletions

View File

@@ -1,6 +1,6 @@
import type { AppProps } from "next/app";
import Head from 'next/head'
import Head from "next/head";
import React, { Fragment } from "react";
function LucidCreationWebsite({ Component, pageProps }: AppProps): JSX.Element {
@@ -13,7 +13,7 @@ function LucidCreationWebsite({ Component, pageProps }: AppProps): JSX.Element {
</Head>
<Component {...pageProps} />
</Fragment>
)
);
}
export default LucidCreationWebsite;