Skip to content

Commit d784cc2

Browse files
committed
Some minor updates
1 parent 68cf3fc commit d784cc2

File tree

8 files changed

+31
-7
lines changed

8 files changed

+31
-7
lines changed

.env.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# hosting with a CDN at a different path from your homepage in package.json
66
# By default, PUBLIC_URL is set to the path specified as your homepage. If you
77
# host at a subpath, you will still need to prefix PUBLIC_URL to static assets.
8+
# I used this first time for Github Pages, but now no need on a read DNS
89
#NEXT_PUBLIC_BASE_PATH=/personal-website
910

1011
# Google analytics ID

public/profile.jpeg

-9.62 KB
Binary file not shown.

public/profile.png

16.1 KB
Loading

src/app/components/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Hero() {
1717
{...scaleIn}
1818
transition={{ delay: 0.2 }}
1919
>
20-
<Image src={`${basePath}/profile.jpeg`} alt="Profile" width={100} height={100} className="rounded-full mb-4 w-32 h-32 object-cover ring-2 ring-primary" />
20+
<Image src={`${basePath}/profile.png`} alt="Profile" width={100} height={100} className="rounded-full mb-4 w-32 h-32 object-cover ring-2 ring-primary" />
2121
</motion.div>
2222
<motion.h1
2323
className="text-4xl md:text-6xl font-bold mb-6"

src/app/components/about/Bio.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Bio() {
1313
{...fadeInUp}
1414
>
1515
<p className="text-lg text-secondary max-w-3xl mx-auto text-center">
16-
I&apos;m a passionate Full Stack Developer with expertise in building modern web applications.
16+
I&apos;m a passionate Full Stack & Lead Developer with expertise in building modern web applications.
1717
Despite working in the backend, I am very much enthusiastic about frontend technologies. My expertise includes PHP, Magento,
1818
Drupal, JavaScript, Nuxt, Vue, MySQL, Android, Flutter, Strapi. Additionally, I like to contribute to the open source community.
1919
</p>

src/app/components/about/Skills.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default function Skills() {
5454
<FaCode className="h-8 w-8 text-primary mb-4" />
5555
<h3 className="text-xl font-semibold mb-2">Frontend</h3>
5656
<ul className="text-secondary space-y-2">
57-
<li>Vue / Nuxt.js</li>
57+
<li>Vue / Nuxt</li>
5858
<li>TypeScript / JavaScript</li>
5959
<li>Angular</li>
6060
<li>HTML5 / CSS3</li>
@@ -74,7 +74,7 @@ export default function Skills() {
7474
<li>Docker / Docker Compose</li>
7575
<li>CI/CD / GitHub Actions</li>
7676
<li>Android / Flutter</li>
77-
<li>Testing: Jest / Playwright</li>
77+
<li>Jest / Playwright</li>
7878
</ul>
7979
</motion.div>
8080
</motion.div>

src/app/layout.tsx

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,31 @@ const geistMono = Geist_Mono({
1616
});
1717

1818
export const metadata: Metadata = {
19-
title: "Abdellatif EL MIZEB Portfolio Website",
20-
description: "Abdellatif EL MIZEB portfolio website using Next.js, Tailwind CSS, and Framer Motion.",
19+
title: "Abdellatif EL MIZEB | Portfolio",
20+
description: "Software Engineer specializing in Magento, Vue, Nuxt, and Cloud solutions.",
21+
keywords: ["Abdellatif EL MIZEB", "Magento", "Nuxt", "Vue", "Strapi", "Developer","Lead Developer", "Portfolio", "Web Development"],
22+
openGraph: {
23+
title: "Abdellatif EL MIZEB | Portfolio",
24+
description: "Lead & Fullstack developer",
25+
url: "https://abdellatifelmizeb.com",
26+
siteName: "Abdellatif Portfolio",
27+
images: [
28+
{
29+
url: "https://abdellatifelmizeb.com/profile.png",
30+
width: 1200,
31+
height: 630,
32+
},
33+
],
34+
locale: "en_US",
35+
type: "website",
36+
},
37+
/*twitter: {
38+
card: "summary_large_image",
39+
site: "@yourtwitter",
40+
title: "Abdellatif EL MIZEB | Portfolio",
41+
description: "Lead & Fullstack developer",
42+
images: ["https://abdellatifelmizeb.com/profile.png"],
43+
},*/
2144
};
2245

2346
export default function RootLayout({

src/contents/projects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const projects: Project[] = [
1212
},
1313
{
1414
title: 'Nuxt Dashboard Template',
15-
description: 'A Nuxt 4 dashboard template styled with Tailwind CSS and developed with Nuxt 3, ECharts, Leaflet and GitHub Actions.',
15+
description: 'A Nuxt 4 dashboard template styled with Tailwind CSS and developed with Nuxt 4, ECharts, Leaflet and GitHub Actions.',
1616
technologies: ['Nuxt 4', 'Vue 3', 'ECharts', 'Tailwind CSS', 'Leaflet', 'GitHub Actions'],
1717
githubLink: 'https://github.com/aelmizeb/nuxt-dashboard',
1818
demoLink: 'https://aelmizeb.github.io/nuxt-dashboard/',

0 commit comments

Comments
 (0)