@@ -49,7 +55,7 @@ function Feature({Svg, title, description}) {
);
}
-export default function HomepageFeatures() {
+export default function HomepageFeatures(): JSX.Element {
return (
diff --git a/src/pages/index.js b/src/pages/index.tsx
similarity index 78%
rename from src/pages/index.js
rename to src/pages/index.tsx
index ee2319b3..b3d1ad94 100644
--- a/src/pages/index.js
+++ b/src/pages/index.tsx
@@ -3,8 +3,8 @@ import Link from '@docusaurus/Link';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import Layout from '@theme/Layout';
import HomepageFeatures from '@site/src/components/HomepageFeatures';
-
import Heading from '@theme/Heading';
+
import styles from './index.module.css';
function HomepageHeader() {
@@ -19,8 +19,8 @@ function HomepageHeader() {
- Get Started 🚀
+ to="/docs/intro">
+ Get Started
@@ -28,14 +28,16 @@ function HomepageHeader() {
);
}
-export default function Home() {
+export default function Home(): JSX.Element {
const {siteConfig} = useDocusaurusContext();
return (
+ title={`Hello from ${siteConfig.title}`}
+ description="Description will go into a meta tag in ">
-
+
+
+
);
}
diff --git a/src/pages/who_am_I.md b/src/pages/who_am_I.md
deleted file mode 100644
index a0ed1ac6..00000000
--- a/src/pages/who_am_I.md
+++ /dev/null
@@ -1,21 +0,0 @@
-## Who am I?
-
-Can I condemn this man, to slavery?
-Pretend I'm not the man I used to be?
-Must my name, until I die, be no more than an alibi?
-
-Must I lie? How can I ever face, my fellow man? How can I ever face myself again?
-My soul belongs to GOD I know, I made that BARGAIN long ago.
-He GAVE me hope when hope was gone. He gave me STENGTH to journey on........
-
-WHO AM I?
-
-WHO AM I?
-
-I'M JEAN VAL JEAN!!!!!!
-
-And so JAVEAT you see it TRUE
-This man bears no more guilt than you.......
-
-WHO AM I?
-2 4 6 O 1 !!!!!!!!!
\ No newline at end of file
diff --git a/static/img/logo.png b/static/img/logo.png
deleted file mode 100644
index cb36f0d4..00000000
Binary files a/static/img/logo.png and /dev/null differ
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 00000000..920d7a65
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,8 @@
+{
+ // This file is not used in compilation. It is here just for a nice editor experience.
+ "extends": "@docusaurus/tsconfig",
+ "compilerOptions": {
+ "baseUrl": "."
+ },
+ "exclude": [".docusaurus", "build"]
+}