Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed and Updated Urls #741

Merged
merged 2 commits into from
Jan 4, 2025
Merged
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
10 changes: 10 additions & 0 deletions src/configs/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ export const siteConfig: {
dev: string;
hashnode: string;
discord: string;
github_organisation: string;

};
other: {
hacktoberfest: string;
codsoft: string;
};
chatbot:{
rateLimit: number;
}
Expand Down Expand Up @@ -47,6 +52,7 @@ export const siteConfig: {
dev: 'https://dev.to/muhammadfiaz',
hashnode: 'https://muhammadfiaz.hashnode.dev',
discord: 'https://discord.gg/mXMhy2EX',
github_organisation: 'https://github.com/FiazTechnologies',
},
metadata: {
description: `Hi! I'm Muhammad Fiaz, a Full Stack developer passionate about building apps, exploring AI and ML, and collaborating on exciting projects. Let's connect!`,
Expand All @@ -57,4 +63,8 @@ export const siteConfig: {
chatbot: {
rateLimit: 10,
},
other: {
hacktoberfest: 'https://hacktoberfest.com/',
codsoft: 'https://www.codsoft.in/',
},
};
16 changes: 9 additions & 7 deletions src/configs/experience.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"use client";
import { siteConfig } from '@/src/configs/config';

export interface ExperienceEntry {
title: string;
description: string;
Expand All @@ -16,7 +18,7 @@ export const experienceEntries: ExperienceEntry[] = [
startDate: "Present",
endDate: "Present",
isActive: true,
companyUrl: "https://muhammadfiaz.com/contact", // Link to your contact page or LinkedIn profile
companyUrl: siteConfig.social.linkedin,
},
{
title: "Fiaz Technologies | Nov. 2023 - Present",
Expand All @@ -25,7 +27,7 @@ export const experienceEntries: ExperienceEntry[] = [
startDate: "Nov 2023",
endDate: "Present",
isActive: true,
companyUrl: "https://github.com/FiazTechnologies",
companyUrl: siteConfig.social.github_organisation,
},
{
title: "Hacktoberfest 2024 | Oct. 2024 - Nov. 2024",
Expand All @@ -34,23 +36,23 @@ export const experienceEntries: ExperienceEntry[] = [
startDate: "Oct 2024",
endDate: "Nov 2024",
isActive: false,
companyUrl: "https://hacktoberfest.com/",
companyUrl: siteConfig.other.hacktoberfest,
},
{
title: "CodSoft - Data Science Intern | Sep. 2023 - Oct. 2023",
description:
"Self-paced Data Science Intern where I gained practical experience in data science applications using Python. I also contributed to open-source projects and maintained repositories on GitHub.",
startDate: "Sep 2023",
endDate: "Oct 2023",
companyUrl: "https://www.codsoft.in/",
companyUrl: siteConfig.other.codsoft,
},
{
title: "Hacktoberfest 2023 | Sep. 2023 - Oct. 2023",
description:
"Participated as a maintainer and content writer in the Hacktoberfest event. Contributed to open-source projects and wrote technical content on platforms such as Medium, Dev.to, and Hashnode.",
startDate: "Sep 2023",
endDate: "Oct 2023",
companyUrl: "https://hacktoberfest.com/",
companyUrl: siteConfig.other.hacktoberfest,
},
{
title: "Technical Content Writer | Sep. 2023 - Present",
Expand All @@ -59,7 +61,7 @@ export const experienceEntries: ExperienceEntry[] = [
startDate: "Sep 2023",
endDate: "Present",
isActive: true,
companyUrl: "https://muhammadfiaz.com/blog",
companyUrl: siteConfig.baseUrl+"/blog",
},
{
title: "Open Source Contributor & Maintainer | Dec. 2020 - Present",
Expand All @@ -68,6 +70,6 @@ export const experienceEntries: ExperienceEntry[] = [
startDate: "Dec 2020",
endDate: "Present",
isActive: true,
companyUrl: "https://github.com/muhammadfiaz",
companyUrl: siteConfig.social.github,
},
];
2 changes: 1 addition & 1 deletion src/configs/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const faqData: FAQItem[] = [
<>
I apologize if I missed your message or if I was slow to respond. Sometimes, messages get overlooked, or I may be caught up with other tasks. If I missed your message by mistake, please feel free to reach out again.
<br className="mb-2" />
To get a faster response, you can also create a notice through a <Link href={`https://github.com/${siteConfig.social.github}/discussions`} className="text-blue-500 hover:underline" target="_blank" rel="noopener noreferrer">GitHub Discussion</Link> or open an issue on my <Link href={`https://github.com/${siteConfig.social.github}/issues`} className="text-blue-500 hover:underline" target="_blank" rel="noopener noreferrer">GitHub repository</Link>. I try to keep track of discussions and issues more actively.
To get a faster response, you can also create a notice through a <Link href={`https://github.com/${siteConfig.social.github}/${siteConfig.social.github}/discussions`} className="text-blue-500 hover:underline" target="_blank" rel="noopener noreferrer">GitHub Discussion</Link> or open an issue on my <Link href={`https://github.com/${siteConfig.social.github}/${siteConfig.social.github}/issues`} className="text-blue-500 hover:underline" target="_blank" rel="noopener noreferrer">GitHub repository</Link>. I try to keep track of discussions and issues more actively.
</>
),
},
Expand Down
Loading