Prettier
This commit is contained in:
parent
de6b0fe017
commit
01bd905b82
|
@ -12,7 +12,6 @@ export type PopupProps = {
|
|||
};
|
||||
|
||||
export default function Popup(props: PopupProps): JSX.Element {
|
||||
|
||||
return (
|
||||
<div
|
||||
className={`fixed inset-0 z-50 grid place-content-center transition-[backdrop-filter] duration-500 ${
|
||||
|
|
|
@ -16,12 +16,12 @@ export default function AboutUs(props: AboutUsProps): JSX.Element {
|
|||
title={langui.about_us}
|
||||
description={langui.about_us_description}
|
||||
/>
|
||||
<NavOption title="Accord’s Handbook" url="/about-us/accords-handbook" border />
|
||||
<NavOption
|
||||
title="Legality"
|
||||
url="/about-us/legality"
|
||||
title="Accord’s Handbook"
|
||||
url="/about-us/accords-handbook"
|
||||
border
|
||||
/>
|
||||
<NavOption title="Legality" url="/about-us/legality" border />
|
||||
<NavOption title="Members" url="/about-us/members" border />
|
||||
<NavOption title="Sharing Policy" url="/about-us/sharing-policy" border />
|
||||
<NavOption title="Contact us" url="/about-us/contact" border />
|
||||
|
|
|
@ -5,7 +5,9 @@ import AppLayout from "components/AppLayout";
|
|||
import { AppStaticProps, getAppStaticProps } from "queries/getAppStaticProps";
|
||||
import { GetPostsPreviewQuery } from "graphql/operations-types";
|
||||
import { getPostsPreview } from "graphql/operations";
|
||||
import ContentPanel, { ContentPanelWidthSizes } from "components/Panels/ContentPanel";
|
||||
import ContentPanel, {
|
||||
ContentPanelWidthSizes,
|
||||
} from "components/Panels/ContentPanel";
|
||||
import PostsPreview from "components/News/PostsPreview";
|
||||
|
||||
interface NewsProps extends AppStaticProps {
|
||||
|
|
|
@ -91,7 +91,6 @@ export default function Chronology(props: ChronologyProps): JSX.Element {
|
|||
|
||||
const contentPanel = (
|
||||
<ContentPanel>
|
||||
|
||||
<ReturnButton
|
||||
href="/wiki"
|
||||
title={langui.wiki}
|
||||
|
|
|
@ -17,7 +17,7 @@ export default function Wiki(props: WikiProps): JSX.Element {
|
|||
title={langui.wiki}
|
||||
description={langui.wiki_description}
|
||||
/>
|
||||
<NavOption title="Chronology" url="/wiki/chronology" border/>
|
||||
<NavOption title="Chronology" url="/wiki/chronology" border />
|
||||
</SubPanel>
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue