Skip to content

Commit

Permalink
Merge pull request #1 from webdevsk/dev
Browse files Browse the repository at this point in the history
Updated Resume with latest info
  • Loading branch information
webdevsk authored Jun 7, 2024
2 parents e085f36 + a1360da commit c45b6ae
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .idx/dev.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{pkgs}: {
channel = "stable-23.11";
packages = [
pkgs.nodejs_20
];
idx.extensions = [

];
idx.previews = {
previews = {
web = {
command = [
"npm"
"run"
"dev"
"--"
"--port"
"$PORT"
"--hostname"
"0.0.0.0"
];
manager = "web";
};
};
};
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"IDX.aI.enableInlineCompletion": true,
"IDX.aI.enableCodebaseIndexing": true
}
6 changes: 2 additions & 4 deletions src/app/(viewer-side)/template1/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,17 +220,15 @@ export default function Template1({ searchParams }) {
<a href={project.link}>
<h5>{project.title}</h5>
</a>
{project.repo && (
<p>
{/* <h6 className="inline">Repository: </h6> */}
<a
className="date"
href={project.repo}
href={project.repo || project.link}
>
<small className="leading-5">{project.repo}</small>
<small className="leading-5">{project.repo||project.link}</small>
</a>
</p>
)}
<p className="w-full">
{"=>"} {project.shortDescription}
</p>
Expand Down
17 changes: 17 additions & 0 deletions src/app/(viewer-side)/template2/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,23 @@ export default function Template2({ searchParams }) {
</a>
</p>
)}
{!project.repo && (
<p>
<a
className="date"
href={project.link}
>
<small>
<FontAwesomeIcon icon="fa-solid fa-globe" />{" "}
<span className="max-xs:hidden">
{project.link}
</span>

<span className="xs:hidden">URL</span>
</small>
</a>
</p>
)}
<p className="w-full">{project.shortDescription}</p>
</div>

Expand Down
71 changes: 69 additions & 2 deletions src/data/resume.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const resume = {
skills: [
{
heading: "Frontend",
data: ["Next JS 14", "React", "Redux", "JavaScript", "Tailwind", "Sass", "CSS", "HTML"],
data: ["Next JS 14", "React", "Redux", "JavaScript", "Tailwind", "Sass", "Vue JS", "CSS"],
},
{
heading: "Backend",
Expand All @@ -42,12 +42,79 @@ const resume = {
"Adobe Xd",
"Figma",
"Google Search",
"Chat GPT"
],
},
],
projects: [
{
enabled: true,
title: "EzamMart Online Store",
shortDescription: "Daily online sports shopping mall for all sports shoppers",
link: "https://www.ezammart.com/",
repo: "",
builtWith: [
"Next JS 14",
"Tailwind",
"App Router",
"Server Side Rendering (SSR)",
"SWR",
"Server Actions",
"Headless Ui",
"Radix Ui",
"Swiper",
"React inner image zoom",
],
features: [
"Utilized Next.js 14's SSR to enhance SEO performance and loading times.",
"State management using SearchParams and Cookies without state management libraries.",
"Simplified data mutations with Server Actions for efficient state management.",
"Implemented dynamic loading of large components for optimal site speed.",
"Utilized my expertise in CSS to create custom layouts on top of headless UI and Radix."
],
},
{
enabled: true,
title: "EzamMart Android App and Website",
shortDescription: "Daily online sports shopping mall for all sports shoppers",
link: "https://m.ezammart.com",
repo: "",
builtWith: [
"Vue 2",
"SASS",
"Uni-App",
],
features: [
"Utilized my expertise in JavaScript to implement new features and enhancements to the legacy codebase.",
"Ensured introduced changes were compatible with Vue.js 2 architecture, minimizing disruptions.",
"Effectively utilized Vue.js 2 lifecycle hooks to manage the application's state and behavior.",
"Leveraged automated refactoring tools (ESLint, Prettier) to maintain code quality and best practices."
],
},
{
enabled: true,
title: "Ezam Tech Solutions",
shortDescription: "Ecommerce, Software, Web, and Erp System development and It Services Provider Company.",
link: "https://www.ezam-tech.com/",
repo: "",
builtWith: [
"Next JS 14",
"Tailwind",
"App Router",
"Server Side Rendering (SSR)",
"Swiper",
"Framer Motion",
],
features: [
"Built a fully responsive website using Next.js 14 and Tailwind CSS.",
"Implemented dynamic loading for large components to optimize site speed.",
"Leveraged CSS expertise to create custom layouts with Headless UI and Radix.",
"Integrated Framer Motion for smooth and responsive animations.",
"Used Swiper.js to create smooth sliders for showcasing important information."
],
},
{
enabled: false,
title: "BestBuy Clone",
shortDescription: "BestBuy but built using React JS",
link: "https://bestbuy-clone-d99b5f.netlify.app/",
Expand Down Expand Up @@ -124,7 +191,7 @@ const resume = {
],
},
{
enabled: true,
enabled: false,
title: "Banco Pan",
shortDescription: "Figma to HTML Convertion",
link: "https://webdevsk.github.io/Banco-Pan/",
Expand Down

0 comments on commit c45b6ae

Please sign in to comment.