+
+
+
+
+
+
+
Latest News
+
+
+
+
+
+
+
Upcoming Events
+
+
+
+
-
-
Upcoming Events
-
-
-
+
+
+
+
-
-
-
-
- {ArticleComponent()}
- {FooterComponent()}
);
}
\ No newline at end of file
diff --git a/react-app/src/components/FooterComponent.tsx b/react-app/src/components/FooterComponent.tsx
index be838f3..cf99211 100644
--- a/react-app/src/components/FooterComponent.tsx
+++ b/react-app/src/components/FooterComponent.tsx
@@ -2,7 +2,7 @@ import {ILink, ISVG} from '../interfaces/types';
export default function FooterComponent() {
- var footerClasses: string = 'footer p-10 bg-base-300 text-base-content fixed bottom-0';
+ var footerClasses: string = 'footer p-10 bg-base-100 text-base-content';
var linkClasses: string = 'link link-hover';
var linksCol1: { [id: string] : ILink; } = {
diff --git a/react-app/src/components/ImageCarouselComponent.tsx b/react-app/src/components/ImageCarouselComponent.tsx
new file mode 100644
index 0000000..81bd7e3
--- /dev/null
+++ b/react-app/src/components/ImageCarouselComponent.tsx
@@ -0,0 +1,29 @@
+import { ReactElement } from "react";
+
+export default function ImageCarouselComponent(): ReactElement {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/react-app/src/components/TextBarComponent.tsx b/react-app/src/components/TextBarComponent.tsx
new file mode 100644
index 0000000..f771df8
--- /dev/null
+++ b/react-app/src/components/TextBarComponent.tsx
@@ -0,0 +1,9 @@
+import { ReactElement } from "react";
+
+export default function TextBarComponent(prop: { classes: string, text: string }): ReactElement {
+ return (
+
+ );
+};
\ No newline at end of file