Link to road map in the app and README
it's a good idea to link to the roadmap somewhere in the app. It's a good way of letting folks who are interested in Cadhub see where it's going. Link to the GH discussion for now. Maybe later if we're confident in the features we want and we've added docs to the website we can add something a bit more official. Add a link to the read me as well! resolves #213
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
import { Link, routes } from '@redwoodjs/router'
|
||||
import OutBound from 'src/components/OutBound'
|
||||
|
||||
const Footer = () => {
|
||||
return (
|
||||
<div className="bg-indigo-900 text-indigo-200 font-roboto mt-20 text-sm">
|
||||
<div className="flex h-16 justify-end items-center mx-16">
|
||||
<OutBound
|
||||
className="mr-8"
|
||||
to="https://github.com/Irev-Dev/cadhub/discussions/212"
|
||||
>
|
||||
Road Map
|
||||
</OutBound>
|
||||
<Link className="mr-8" to={routes.codeOfConduct()}>
|
||||
Code of Conduct
|
||||
</Link>
|
||||
|
||||
@@ -154,7 +154,14 @@ const LandingSection = () => {
|
||||
>
|
||||
CascadeStudio
|
||||
</OutBound>{' '}
|
||||
with more integrations coming soon.
|
||||
with more integrations{' '}
|
||||
<OutBound
|
||||
className="text-gray-600 underline"
|
||||
to="https://github.com/Irev-Dev/cadhub/discussions/212"
|
||||
>
|
||||
coming soon
|
||||
</OutBound>
|
||||
.
|
||||
</p>
|
||||
<Link to={routes.draftPart()}>
|
||||
<div className="bg-texture bg-purple-800 text-center w-full py-6 rounded-b-md border border-indigo-300 border-opacity-0 hover:border-opacity-100 hover:shadow-xl">
|
||||
|
||||
@@ -4,6 +4,7 @@ const OutBound = ({ className, children, to }) => {
|
||||
return (
|
||||
<a
|
||||
className={className}
|
||||
target="_blank"
|
||||
href={to}
|
||||
onClick={() => {
|
||||
ReactGA.event({
|
||||
|
||||
Reference in New Issue
Block a user