Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust Feedback column #96

Merged
merged 3 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 20 additions & 21 deletions src/routes/_components/About.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Block } from '@/components/Container';
import { Columns, SectionMessage } from '@marigold/components';
import { Columns } from '@marigold/components';
import { Link } from '@tanstack/react-router';

export const About = () => (
Expand Down Expand Up @@ -27,25 +27,24 @@ export const About = () => (
</p>
</div>
</Columns>
<div className="mx-auto grid max-w-screen-sm place-items-center pt-32">
<SectionMessage variant="info">
<SectionMessage.Title>Feedback</SectionMessage.Title>
<SectionMessage.Content>
<p className="mb-4">
If you have any suggestions for patterns that we should add, or if
you some your own code could become a valuable addition here, we'd
love to hear from you!
</p>
<p>
Your feedback, ideas, and suggestions for improvement are always
welcome. Feel free to reach out to us through any of{' '}
<Link href="https://www.marigold-ui.io/introduction/get-in-touch">
<u>our communication channels</u>
</Link>
.
</p>
</SectionMessage.Content>
</SectionMessage>
</div>
<Columns columns={[1, 1]} space={24} collapseAt="900px">
<div>
<h2>Feedback</h2>
<p>
If you have any suggestions for patterns that we should add, or if
you some your own code could become a valuable addition here, we'd
love to hear from you!
</p>
<p>
Your feedback, ideas, and suggestions for improvement are always
welcome. Feel free to reach out to us through any of{' '}
<Link href="https://www.marigold-ui.io/introduction/get-in-touch">
<u>our communication channels</u>
</Link>
.
</p>
</div>
<div></div>
</Columns>
</Block>
);
Loading