Skip to content

Commit ad565bd

Browse files
committed
add SEO enhancements: update index.html meta tags, add robots.txt and sitemap.xml
1 parent 2790300 commit ad565bd

4 files changed

Lines changed: 71 additions & 2 deletions

File tree

.github/workflows/deploy-pages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
cp index.html dist/
3232
cp styles.css dist/
3333
cp script.js dist/
34+
cp robots.txt dist/
35+
cp sitemap.xml dist/
3436
cp -r assets dist/
3537
touch dist/.nojekyll
3638

index.html

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,66 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Fozle Rabbi Shafi | Portfolio</title>
7-
<meta name="description" content="Portfolio of Fozle Rabbi Shafi - PhD Student in Computing at Queen's University, focused on Generative AI, LLMs, and AI-driven cybersecurity.">
6+
<title>Fozle Rabbi Shafi | AI & Cybersecurity Research Portfolio</title>
7+
<meta name="description" content="Official portfolio of Fozle Rabbi Shafi, PhD student in Computing at Queen's University. Research in Generative AI, LLMs, agentic AI, and AI-driven cybersecurity.">
8+
<meta name="robots" content="index, follow, max-image-preview:large">
9+
<meta name="author" content="Fozle Rabbi Shafi">
10+
<meta name="keywords" content="Fozle Rabbi Shafi, Generative AI, LLM, Cybersecurity, Agentic AI, Queen's University, Researcher, Portfolio">
11+
<link rel="canonical" href="https://devshafi.github.io/">
12+
13+
<meta property="og:type" content="website">
14+
<meta property="og:title" content="Fozle Rabbi Shafi | AI & Cybersecurity Research Portfolio">
15+
<meta property="og:description" content="PhD student in Computing at Queen's University focused on Generative AI, LLMs, and AI-driven cybersecurity.">
16+
<meta property="og:url" content="https://devshafi.github.io/">
17+
<meta property="og:site_name" content="Fozle Rabbi Shafi Portfolio">
18+
<meta property="og:image" content="https://devshafi.github.io/assets/shafi_image.jpg">
19+
20+
<meta name="twitter:card" content="summary_large_image">
21+
<meta name="twitter:title" content="Fozle Rabbi Shafi | AI & Cybersecurity Research Portfolio">
22+
<meta name="twitter:description" content="Portfolio and research profile of Fozle Rabbi Shafi.">
23+
<meta name="twitter:image" content="https://devshafi.github.io/assets/shafi_image.jpg">
24+
825
<link rel="preconnect" href="https://fonts.googleapis.com">
926
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1027
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Sora:wght@400;600;700&display=swap" rel="stylesheet">
1128
<link rel="stylesheet" href="styles.css">
29+
<script type="application/ld+json">
30+
{
31+
"@context": "https://schema.org",
32+
"@type": "Person",
33+
"name": "Fozle Rabbi Shafi",
34+
"url": "https://devshafi.github.io/",
35+
"image": "https://devshafi.github.io/assets/shafi_image.jpg",
36+
"email": "mailto:f.shafi@queensu.ca",
37+
"telephone": "+1 613 561 6661",
38+
"jobTitle": "PhD Student in Computing",
39+
"worksFor": {
40+
"@type": "Organization",
41+
"name": "Queen's University"
42+
},
43+
"alumniOf": [
44+
{
45+
"@type": "CollegeOrUniversity",
46+
"name": "Queen's University"
47+
},
48+
{
49+
"@type": "CollegeOrUniversity",
50+
"name": "Metropolitan University"
51+
}
52+
],
53+
"sameAs": [
54+
"https://www.linkedin.com/in/fozle-rabbi-shafi-07841511a",
55+
"https://scholar.google.com/scholar?q=Fozle+Rabbi+Shafi"
56+
],
57+
"knowsAbout": [
58+
"Generative AI",
59+
"Large Language Models",
60+
"AI-driven Cybersecurity",
61+
"Deep Learning",
62+
"Agentic AI"
63+
]
64+
}
65+
</script>
1266
</head>
1367
<body>
1468
<div class="bg-shape shape-1" aria-hidden="true"></div>

robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://devshafi.github.io/sitemap.xml

sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://devshafi.github.io/</loc>
5+
<lastmod>2026-03-31</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)