diff --git a/ui/src/components/General/ListItems/News/News.tsx b/ui/src/components/General/ListItems/News/News.tsx index 2ce4677a..abefd2ea 100644 --- a/ui/src/components/General/ListItems/News/News.tsx +++ b/ui/src/components/General/ListItems/News/News.tsx @@ -15,7 +15,12 @@ const News: React.FC> = ({ {image && ( - + )}
{title} diff --git a/ui/src/pages/About/index.tsx b/ui/src/pages/About/index.tsx index 245aad62..8fb914d6 100644 --- a/ui/src/pages/About/index.tsx +++ b/ui/src/pages/About/index.tsx @@ -9,7 +9,7 @@ import { import { Card, List, Table, Typography } from "antd"; import style from "./About.module.scss"; import about from "assets/about.jpg"; -import Footer from "../../components/Layouts/Footer"; +import Footer from "components/Layouts/Footer"; const About = () => { return ( diff --git a/ui/src/pages/Feedback/index.tsx b/ui/src/pages/Feedback/index.tsx index 363d04f5..33c73c66 100644 --- a/ui/src/pages/Feedback/index.tsx +++ b/ui/src/pages/Feedback/index.tsx @@ -1,34 +1,38 @@ import { useState } from "react"; import style from "./Feedback.module.scss"; import { Skeleton } from "antd"; +import Footer from "components/Layouts/Footer"; const AirtableEmbed = () => { const [loading, setLoading] = useState(true); return ( -
- {loading && ( -
- - - - - - - - - - -
- )} + <> +
+ {loading && ( +
+ + + + + + + + + + +
+ )} - -
+ +
+