Submit a proposal to receive financing or support from the MoonDAO community. Please refer to our documentation for more details on the project system and governance processes before getting started.
+Submit a proposal to receive financing or support from the MoonDAO community. Please refer to our documentation for more details on the project system and governance processes before getting started. If collaborating on proposal development, you may want to start by using the Google doc template.
); From bc8f9f8c25a4db643f9ed0fde10346986ce2bc29 Mon Sep 17 00:00:00 2001 From: Mitchie <88346127+MitchMcQuinn@users.noreply.github.com> Date: Mon, 16 Dec 2024 15:58:44 -0500 Subject: [PATCH 2/4] Update propose.tsx Resolve issue with malformed link and updated phrasing --- ui/pages/propose.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/pages/propose.tsx b/ui/pages/propose.tsx index 33285064..083634f0 100644 --- a/ui/pages/propose.tsx +++ b/ui/pages/propose.tsx @@ -7,6 +7,7 @@ import ContentLayout from '../components/layout/ContentLayout'; import WebsiteHead from '../components/layout/Head'; import { useRouter } from 'next/router'; // Add this import import { NoticeFooter } from '../components/layout/NoticeFooter'; +import Link from 'next/link' export default function NewProposal() { const router = useRouter(); // Initialize the router @@ -18,7 +19,9 @@ export default function NewProposal() { const title = 'New Proposal'; const description = ( -Submit a proposal to receive financing or support from the MoonDAO community. Please refer to our documentation for more details on the project system and governance processes before getting started. If collaborating on proposal development, you may want to start by using the Google doc template.
++ Submit a proposal to receive financing or support from the MoonDAO community. Please refer to our documentation for more details on the project system and governance processes before getting started. We recommend starting your draft with the Google doc template. +
); From 74698e1a57775d554f8da15ff9b6e2259d418068 Mon Sep 17 00:00:00 2001 From: Mitchie <88346127+MitchMcQuinn@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:04:01 -0500 Subject: [PATCH 3/4] Update propose.tsx Capitalize the L --- ui/pages/propose.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pages/propose.tsx b/ui/pages/propose.tsx index 083634f0..cfa05fc6 100644 --- a/ui/pages/propose.tsx +++ b/ui/pages/propose.tsx @@ -7,7 +7,7 @@ import ContentLayout from '../components/layout/ContentLayout'; import WebsiteHead from '../components/layout/Head'; import { useRouter } from 'next/router'; // Add this import import { NoticeFooter } from '../components/layout/NoticeFooter'; -import Link from 'next/link' +import Link from 'next/Link' export default function NewProposal() { const router = useRouter(); // Initialize the router From 387c7def9103c136df25dd761a10036776328e89 Mon Sep 17 00:00:00 2001 From: Mitchie <88346127+MitchMcQuinn@users.noreply.github.com> Date: Mon, 16 Dec 2024 16:08:19 -0500 Subject: [PATCH 4/4] Update propose.tsx Corrected malformed links --- ui/pages/propose.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/pages/propose.tsx b/ui/pages/propose.tsx index cfa05fc6..bc882a6a 100644 --- a/ui/pages/propose.tsx +++ b/ui/pages/propose.tsx @@ -7,7 +7,7 @@ import ContentLayout from '../components/layout/ContentLayout'; import WebsiteHead from '../components/layout/Head'; import { useRouter } from 'next/router'; // Add this import import { NoticeFooter } from '../components/layout/NoticeFooter'; -import Link from 'next/Link' +import Link from 'next/link' export default function NewProposal() { const router = useRouter(); // Initialize the router @@ -20,7 +20,7 @@ export default function NewProposal() { const description = (- Submit a proposal to receive financing or support from the MoonDAO community. Please refer to our documentation for more details on the project system and governance processes before getting started. We recommend starting your draft with the Google doc template. + Submit a proposal to receive financing or support from the MoonDAO community. Please refer to our documentation for more details on the project system and governance processes before getting started. We recommend starting your draft with the Google doc template.
);