Skip to content

Commit 4afeb3c

Browse files
author
prime7
committed
updated content
1 parent d667972 commit 4afeb3c

3 files changed

Lines changed: 28 additions & 13 deletions

File tree

src/app/about/Work.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ const WORK_EXPERIENCE_DATA = [
99
triggerContent: {
1010
title: "Software Engineer",
1111
subtitle: "Chegg Inc",
12-
date: "February, 2022 - November, 2024",
12+
date: "February, 2022 - May, 2025",
1313
},
1414
dialogContent: {
1515
title: "Software Engineer",
1616
subtitle: "Chegg Inc",
17-
date: "February, 2022 - November, 2024",
17+
date: "February, 2022 - May, 2025", // February 28, 2022 - May 15, 2025
1818
tags: ["React.js", "Node.js", "GraphQL", "AWS SNS", "AWS Lambda", "Optimizely", "OCR", "AWS Polly", "OpenAI Whisper"],
1919
items: [
20+
"Integrated LLM-as-judge pipeline in CI/CD pipeline to rapidly prototype and test new features while ensuring high quality resulted in 62% faster evaluation process",
2021
"Evolved from front-end specialist to full-stack engineer, mastering React.js, Node.js, federated GraphQL, and real-time subscriptions with AWS SNS and Lambda.",
2122
"Developed complex custom React WYSIWYG editors and high-performance components for authoring tools.",
2223
"Delivered two critical acquisition tools in 4 months: a content generation system (flashcards, quizzes, reviews) and a project organization tool, increasing user engagement by 30%.",

src/app/projects/page.tsx

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ import { useState, useEffect } from "react";
55
export default function Blog() {
66
const [showProjects, setShowProjects] = useState(false);
77
const projects = [
8+
{
9+
name: "TopTechSchool",
10+
description: [
11+
"A platform to apply for jobs and get hired.",
12+
"Uses AI to apply for the job faster and better.",
13+
"Customized resume and cover letter for each job application.",
14+
"Practice for interviews with mock interviews and AI-powered interviewer.",
15+
"Get feedback on your resume and cover letter with AI.",
16+
],
17+
stack: ["Next.js", "stripe", "Redis", "OpenAI", "RAG", "Anthropic", "Gemini", "Supabase"],
18+
status: "active",
19+
demo: "https://www.toptechschool.com/",
20+
},
821
{
922
name: "Chat Monster",
1023
description: [
@@ -33,14 +46,13 @@ export default function Blog() {
3346
useEffect(() => {
3447
const timer = setTimeout(() => {
3548
setShowProjects(true);
36-
}, 1000); // Adjust timing as needed
49+
}, 1000);
3750

3851
return () => clearTimeout(timer);
3952
}, []);
4053

4154
return (
4255
<div className="container mx-auto px-4 py-8 text-gray-900 dark:text-gray-100 font-mono">
43-
{/* Projects Section */}
4456
<div className="mb-8">
4557
<h2 className="text-3xl font-semibold mb-6">Projects CLI</h2>
4658
<div className="p-4 bg-gray-100 dark:bg-gray-800 rounded-lg shadow-md">
@@ -76,14 +88,16 @@ export default function Blog() {
7688
))}
7789
</div>
7890
<div className="mt-2 space-x-4">
79-
<Link
80-
href={project.github}
81-
target="_blank"
82-
rel="noopener noreferrer"
83-
className="text-blue-600 dark:text-blue-400 hover:underline inline-flex items-center"
84-
>
85-
<span className="text-xs">{">"}</span> github
86-
</Link>
91+
{project.github && (
92+
<Link
93+
href={project.github}
94+
target="_blank"
95+
rel="noopener noreferrer"
96+
className="text-blue-600 dark:text-blue-400 hover:underline inline-flex items-center"
97+
>
98+
<span className="text-xs">{">"}</span> github
99+
</Link>
100+
)}
87101
<Link
88102
href={project.demo}
89103
target="_blank"

src/components/footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function Footer() {
1818
<div className="container mx-auto px-4 py-8">
1919
<div className="flex flex-col md:flex-row justify-between items-center">
2020
<div className="text-gray-600 mb-4 md:mb-0">
21-
<p>&copy; {currentYear} All rights reserved</p>
21+
<p>&copy; {currentYear} 🛜 Tarek Ahmed</p>
2222
</div>
2323
<nav aria-label="Social media links">
2424
<ul className="flex space-x-6">

0 commit comments

Comments
 (0)