mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-24 23:32:19 +10:00
feat: update links for improved accessibility
This commit is contained in:
@@ -202,7 +202,7 @@ export const DonationBanner = () => (
|
||||
nativeButton={false}
|
||||
className="h-11 gap-2 px-6"
|
||||
render={
|
||||
<a href="https://opencollective.com/reactive-resume/donate" target="_blank" rel="noopener">
|
||||
<a href="https://opencollective.com/reactive-resume/donate" target="_blank" rel="noopener noreferrer">
|
||||
<HeartIcon aria-hidden="true" weight="fill" className="text-rose-400 dark:text-rose-600" />
|
||||
Open Collective
|
||||
<span className="sr-only"> ({t`opens in new tab`})</span>
|
||||
@@ -215,7 +215,7 @@ export const DonationBanner = () => (
|
||||
nativeButton={false}
|
||||
className="h-11 gap-2 px-6"
|
||||
render={
|
||||
<a href="https://github.com/sponsors/AmruthPillai" target="_blank" rel="noopener">
|
||||
<a href="https://github.com/sponsors/AmruthPillai" target="_blank" rel="noopener noreferrer">
|
||||
<GithubLogoIcon aria-hidden="true" weight="fill" className="text-zinc-400 dark:text-zinc-600" />
|
||||
GitHub Sponsors
|
||||
<span className="sr-only"> ({t`opens in new tab`})</span>
|
||||
|
||||
@@ -60,7 +60,7 @@ const getFaqItems = (): FAQItemData[] => [
|
||||
},
|
||||
];
|
||||
|
||||
export function FAQ() {
|
||||
export function Faq() {
|
||||
const faqItems = getFaqItems();
|
||||
|
||||
return (
|
||||
|
||||
@@ -129,7 +129,7 @@ function FooterLink({ url, label }: FooterLinkItem) {
|
||||
<a
|
||||
href={url}
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
rel="noopener noreferrer"
|
||||
className="relative inline-block text-sm transition-colors hover:text-foreground"
|
||||
onMouseEnter={() => setIsHovered(true)}
|
||||
onMouseLeave={() => setIsHovered(false)}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { createRootStructuredDataScript, getCanonicalRootUrl } from "@/libs/seo";
|
||||
import { DonationBanner } from "./-sections/donate";
|
||||
import { FAQ } from "./-sections/faq";
|
||||
import { Faq } from "./-sections/faq";
|
||||
import { Features } from "./-sections/features";
|
||||
import { Footer } from "./-sections/footer";
|
||||
import { Hero } from "./-sections/hero";
|
||||
@@ -35,7 +35,7 @@ function RouteComponent() {
|
||||
<Templates />
|
||||
<Testimonials />
|
||||
<DonationBanner />
|
||||
<FAQ />
|
||||
<Faq />
|
||||
<Prefooter />
|
||||
<Footer />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user