Skip to content

Commit

Permalink
feat: 修改赞助列表
Browse files Browse the repository at this point in the history
  • Loading branch information
weijunext committed Sep 22, 2024
1 parent 7e1c8dc commit e9b23ca
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
8 changes: 7 additions & 1 deletion components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ const footerNavigation = {
name: "Next.js 实践教程",
href: "https://nextjs.weijunext.com/?utm_source=gapismoney&utm_medium=referral",
},
{
name: "Chrome插件全栈开发",
href: "https://xiaobot.net/p/ship-ph-copilot?refer=1e5db497-8ed5-461b-af85-e71cb80e3787",
rel: "noopener noreferrer nofollow",
},
],
openSource: [
{
Expand Down Expand Up @@ -80,7 +85,7 @@ export default function Footer() {
items,
}: {
title: string;
items: { name: string; href: string }[];
items: { name: string; href: string; rel?: string }[];
}) => (
<div>
<h3 className="text-small font-semibold">{title}</h3>
Expand All @@ -93,6 +98,7 @@ export default function Footer() {
title={item.name}
target="_blank"
size="sm"
rel={item.rel || "noopener noreferrer"}
>
{item.name}
</Link>
Expand Down
15 changes: 14 additions & 1 deletion components/mdx/Aside.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,23 @@ export function Aside({
</li>
<li>
<Link
href="https://nextjscn.org/docs?utm_source=gapis.money"
href="https://PHCopilot.AI/?utm_source=gapis.money"
title="PHCopilot.AI"
target="_blank"
className="link-underline"
>
《专栏:Chrome插件全栈开发》
</Link>
:本专栏实现了「PH
Copilot」完整的功能,让你学完后就能开发上线自己的全栈SaaS工具。
</li>
<li>
<Link
href="https://xiaobot.net/p/ship-ph-copilot?refer=1e5db497-8ed5-461b-af85-e71cb80e3787"
title="Next.js 中文文档"
target="_blank"
className="link-underline"
rel="noopener norefferer nofollow"
>
Next.js 中文文档
</Link>
Expand Down

0 comments on commit e9b23ca

Please sign in to comment.