update naming convention of repository

This commit is contained in:
Amruth Pillai
2026-01-20 01:22:00 +01:00
parent 3d1334f7d9
commit 7e5597271b
19 changed files with 35 additions and 63 deletions
+5 -5
View File
@@ -26,20 +26,20 @@ type SocialLink = {
const getResourceLinks = (): FooterLinkItem[] => [
{ url: "https://docs.rxresu.me", label: t`Documentation` },
{ url: "https://github.com/AmruthPillai/Reactive-Resume", label: t`Source Code` },
{ url: "https://github.com/amruthpillai/reactive-resume", label: t`Source Code` },
{ url: "https://crowdin.com/project/reactive-resume", label: t`Translations` },
{ url: "https://opencollective.com/reactive-resume", label: t`Donate` },
];
const getCommunityLinks = (): FooterLinkItem[] => [
{ url: "https://github.com/AmruthPillai/Reactive-Resume/discussions", label: t`Discussions` },
{ url: "https://github.com/AmruthPillai/Reactive-Resume/issues", label: t`Report an Issue` },
{ url: "https://github.com/amruthpillai/reactive-resume/discussions", label: t`Discussions` },
{ url: "https://github.com/amruthpillai/reactive-resume/issues", label: t`Report an Issue` },
{ url: "https://crowdin.com/project/reactive-resume", label: t`Translations` },
{ url: "https://github.com/AmruthPillai/Reactive-Resume/blob/main/CONTRIBUTING.md", label: t`Contributing` },
{ url: "https://github.com/amruthpillai/reactive-resume/blob/main/CONTRIBUTING.md", label: t`Contributing` },
];
const socialLinks: SocialLink[] = [
{ url: "https://github.com/AmruthPillai/Reactive-Resume", label: "GitHub", icon: GithubLogoIcon },
{ url: "https://github.com/amruthpillai/reactive-resume", label: "GitHub", icon: GithubLogoIcon },
{ url: "https://linkedin.com/in/amruthpillai", label: "LinkedIn", icon: LinkedinLogoIcon },
{ url: "https://x.com/KingOKings", label: "X (Twitter)", icon: XLogoIcon },
];
+1 -1
View File
@@ -36,7 +36,7 @@ async function handler({ request }: { request: Request }) {
title: "Reactive Resume",
version: "5.0.0",
description: "Reactive Resume API",
license: { name: "MIT", url: "https://github.com/AmruthPillai/Reactive-Resume/blob/main/LICENSE" },
license: { name: "MIT", url: "https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE" },
contact: { name: "Amruth Pillai", email: "hello@amruthpillai.com", url: "https://amruthpillai.com" },
},
servers: [{ url: `${env.APP_URL}/api/openapi` }],
@@ -42,13 +42,13 @@ export function InformationSectionBuilder() {
</Button>
<Button asChild size="sm" variant="link" className="text-xs">
<a href="https://github.com/AmruthPillai/Reactive-Resume" target="_blank" rel="noopener noreferrer">
<a href="https://github.com/amruthpillai/reactive-resume" target="_blank" rel="noopener noreferrer">
<Trans>Source Code</Trans>
</a>
</Button>
<Button asChild size="sm" variant="link" className="text-xs">
<a href="https://github.com/AmruthPillai/Reactive-Resume/issues" target="_blank" rel="noopener noreferrer">
<a href="https://github.com/amruthpillai/reactive-resume/issues" target="_blank" rel="noopener noreferrer">
<Trans>Report a Bug</Trans>
</a>
</Button>