We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71dd198 commit 5034b18Copy full SHA for 5034b18
2 files changed
src/app/(Pages)/Announcements/page.tsx
@@ -12,17 +12,13 @@ const Page = () => {
12
return (
13
<div className="bg-white">
14
<Navbar />
15
- <Body>
16
-
17
- {/*<div className="content-center w-11/12 mx-auto bg-transparent min-h-screen px-5 py-5">*/}
+ <Body>
18
<H1>Announcements</H1>
19
{articlesMD !== null && (<AnnouncementArticleList articles={articlesMD} />)}
20
</Body>
21
- {/*</div>*/}
22
<Footer />
23
24
</div>
25
+
26
)
27
}
28
export default Page
src/app/components/Navbar.tsx
@@ -14,6 +14,7 @@ const navItems = [
{ label: "Announcements", id: "/Platform/Announcements" }
];
export default function Navbar() {
const imgRef = useRef<HTMLImageElement>(null);
const menuRef = useRef<HTMLDivElement>(null);
0 commit comments