Skip to content
Draft
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion app/whats-new/tinacloud/WhatsNewTinaCloudPageLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from 'next/link';
import { FaNewspaper } from 'react-icons/fa';
import { FaNewspaper, FaYoutube } from 'react-icons/fa';
import { H1_HEADINGS_SIZE } from '@/component/styles/typography';
import { WhatsNewCard } from '../tinacms/WhatsNewTinaCMSLayout';

Expand All @@ -25,6 +25,12 @@ export const WhatsNewTinaCloudPageLayout = ({ data }) => {
>
See Newsletters <FaNewspaper className="ml-2" />
</Link>
<Link
href="https://www.youtube.com/@TinaCMS/videos"
className="flex items-center justify-center hover:text-blue-800"
>
Watch the Videos <FaYoutube className="ml-2" />
</Link>
</div>
</div>
);
Expand Down
8 changes: 7 additions & 1 deletion app/whats-new/tinacms/WhatsNewTinaCMSLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from 'next/link';
import { FaGithub, FaNewspaper } from 'react-icons/fa';
import { FaGithub, FaNewspaper, FaYoutube } from 'react-icons/fa';
import { H1_HEADINGS_SIZE } from '@/component/styles/typography';

interface ChangeItem {
Expand Down Expand Up @@ -140,6 +140,12 @@ const WhatsNewTinaCMSPageLayout = ({ data }) => {
>
See Newsletters <FaNewspaper className="ml-2" />
</Link>
<Link
href="https://www.youtube.com/@TinaCMS/videos"
className="flex items-center justify-center hover:text-blue-800"
>
Watch the Videos <FaYoutube className="ml-2" />
</Link>
</div>
</div>
);
Expand Down
Loading