diff --git a/src/Footer.tsx b/src/Footer.tsx
new file mode 100644
index 0000000..2c102db
--- /dev/null
+++ b/src/Footer.tsx
@@ -0,0 +1,35 @@
+import * as React from 'react';
+import Container from '@mui/material/Container';
+import Link from '@mui/material/Link';
+import Typography from '@mui/material/Typography';
+
+function Copyright() {
+ return (
+
+
+ {'Copyright © Aetoskia Internal Infrastructure — All rights reserved.'}
+
+
+ {new Date().getFullYear()}
+
+ );
+}
+
+export default function Footer() {
+ return (
+
+
+
+
+
+ );
+}
diff --git a/src/Home.tsx b/src/Home.tsx
index d00b98a..62e629f 100644
--- a/src/Home.tsx
+++ b/src/Home.tsx
@@ -1,26 +1,17 @@
import * as React from "react";
+import AppTheme from './shared-theme/AppTheme';
+import CssBaseline from '@mui/material/CssBaseline';
+import Footer from './Footer';
+
+export default function Home(props: { disableCustomTheme?: boolean }) {
-const Home: React.FC = () => {
return (
-
-
Welcome to Khata
-
+
+
+
+
Welcome to Khata
+
+
+
);
-};
-
-const styles: { [key: string]: React.CSSProperties } = {
- container: {
- height: "100vh",
- display: "flex",
- alignItems: "center",
- justifyContent: "center",
- backgroundColor: "#0f172a",
- },
- title: {
- color: "#ffffff",
- fontSize: "2rem",
- fontWeight: 600,
- },
-};
-
-export default Home;
\ No newline at end of file
+}