From 6018a2235a4982ee0f8d1b6fe05b67def681b5a1 Mon Sep 17 00:00:00 2001
From: Zhenya Goroh Support the project {description}
+ {children}
+
+ {children}
+
- {children}
-
- {children}
-
- {components.map((component) => (
-
Support the project
{description}
diff --git a/src/components/navigation.tsx b/src/components/navigation.tsx index 771bdeb..d679b0e 100644 --- a/src/components/navigation.tsx +++ b/src/components/navigation.tsx @@ -22,6 +22,7 @@ export const components: { href: string; description: string; isTargetBlank?: boolean; + rel?: "noopener noreferrer" }[] = [ { title: "Privacy Policy", @@ -35,6 +36,7 @@ export const components: { description: "Join our Discord server to chat with the community and get support.", isTargetBlank: true, + rel: "noopener noreferrer" }, { title: "Source Code", @@ -42,6 +44,7 @@ export const components: { description: "View the source code on GitHub and contribute to the project.", isTargetBlank: true, + rel: "noopener noreferrer" }, { title: "Branding Assets", @@ -169,6 +172,7 @@ export function Navigation() { title="Patreon" href="https://patreon.com/zen_browser?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink" target="_blank" + rel="noopener noreferrer" > Support us on Patreon and get exclusive rewards and keep the project alive. @@ -177,6 +181,7 @@ export function Navigation() { title="Ko-Fi" href="https://ko-fi.com/zen_browser?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink" target="_blank" + rel="noopener noreferrer" > Ko-fi is a way to support us with a one-time donation and help us keep the project alive. @@ -189,12 +194,13 @@ export function Navigation() {
Consider joining our{" "}
@@ -85,6 +91,8 @@ export default function ReleaseNoteElement({ data }: { data: ReleaseNote }) {
If you encounter any issues, please report them on{" "}
@@ -148,6 +156,8 @@ export default function ReleaseNoteElement({ data }: { data: ReleaseNote }) {
{fix.description}
{fix.issue && (
From 03345bfba215d6005bec3e05303a79ef3df52e1f Mon Sep 17 00:00:00 2001
From: Zhenya Goroh