Skip to content

Commit 6b2c94c

Browse files
Copilotdconco
andcommitted
Add comprehensive SEO meta tags and structured data
Co-authored-by: dconco <[email protected]>
1 parent e98af03 commit 6b2c94c

File tree

4 files changed

+212
-7
lines changed

4 files changed

+212
-7
lines changed

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Dave Conco Portfolio
22

3-
This is my personal portfolio.
3+
This is my personal portfolio website hosted at [https://www.dconco.tech](https://www.dconco.tech).
44

5-
I builds amazing web applications and mobile apps using PHP, C++, Node.js, and React.
5+
I build amazing web applications and mobile apps using PHP, C++, Node.js, and React.
6+
7+
## SEO Features
8+
9+
This website is fully optimized for search engines with:
10+
11+
- ✅ Comprehensive meta tags (title, description, keywords, author)
12+
- ✅ Open Graph (OG) tags for social media sharing
13+
- ✅ Twitter Card tags for Twitter/X integration
14+
- ✅ Structured data (Schema.org JSON-LD) for rich search results
15+
- ✅ Canonical URL configuration
16+
- ✅ robots.txt for search engine crawler guidance
17+
- ✅ sitemap.xml for better search engine indexing
18+
- ✅ Mobile-friendly theme colors
19+
- ✅ Semantic HTML structure
20+
- ✅ Proper image alt attributes
21+
22+
## Technologies
23+
24+
- HTML5
25+
- CSS3
26+
- JavaScript
27+
- Font Awesome Icons

index.html

Lines changed: 112 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,53 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Dave Conco - Software Developer</title>
7-
<!-- META TAGS -->
8-
<meta name="title" content="Dave Conco | Software Developer" />
6+
<title>Dave Conco - Full-Stack Developer & Backend Engineer | Portfolio</title>
7+
8+
<!-- PRIMARY META TAGS -->
9+
<meta name="title" content="Dave Conco - Full-Stack Developer & Backend Engineer | Portfolio" />
10+
<meta name="author" content="Dave Conco" />
911
<meta name="developer" content="dconco" />
12+
<meta name="copyright" content="Dave Conco" />
13+
<meta name="robots" content="index, follow" />
14+
<meta name="language" content="English" />
15+
<meta name="revisit-after" content="7 days" />
1016
<meta
1117
name="keywords"
12-
content="portfolio, dave conco, dconco, developer, resume, software developer, programmer, fullstack developer" />
18+
content="Dave Conco, dconco, full-stack developer, backend engineer, software developer, web developer, PHP developer, Node.js developer, React developer, mobile app developer, portfolio, resume, programmer, PhpSlides, C++ developer, Laravel developer, API developer" />
1319
<meta
1420
name="description"
15-
content="Dave Conco builds amazing web applications and mobile apps using PHP, C++, Node.js, and React." />
21+
content="Dave Conco is a Full-Stack Developer & Backend Engineer with 5+ years of experience. Specializing in PHP, C++, Node.js, React, and mobile app development. Creator of PhpSlides framework and multiple successful web applications." />
22+
23+
<!-- CANONICAL URL -->
24+
<link rel="canonical" href="https://www.dconco.tech/" />
25+
26+
<!-- OPEN GRAPH / FACEBOOK META TAGS -->
27+
<meta property="og:type" content="website" />
28+
<meta property="og:url" content="https://www.dconco.tech/" />
29+
<meta property="og:site_name" content="Dave Conco Portfolio" />
30+
<meta property="og:title" content="Dave Conco - Full-Stack Developer & Backend Engineer" />
31+
<meta property="og:description" content="Full-Stack Developer with 5+ years of experience building web applications and mobile apps. Specializing in PHP, C++, Node.js, React, and backend engineering." />
32+
<meta property="og:image" content="https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png" />
33+
<meta property="og:image:secure_url" content="https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png" />
34+
<meta property="og:image:width" content="1200" />
35+
<meta property="og:image:height" content="630" />
36+
<meta property="og:image:alt" content="Dave Conco - Software Developer" />
37+
<meta property="og:locale" content="en_US" />
38+
39+
<!-- TWITTER CARD META TAGS -->
40+
<meta name="twitter:card" content="summary_large_image" />
41+
<meta name="twitter:url" content="https://www.dconco.tech/" />
42+
<meta name="twitter:title" content="Dave Conco - Full-Stack Developer & Backend Engineer" />
43+
<meta name="twitter:description" content="Full-Stack Developer with 5+ years of experience building web applications and mobile apps. Specializing in PHP, C++, Node.js, React, and backend engineering." />
44+
<meta name="twitter:image" content="https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png" />
45+
<meta name="twitter:image:alt" content="Dave Conco - Software Developer" />
46+
<meta name="twitter:creator" content="@dave_conco" />
47+
<meta name="twitter:site" content="@dave_conco" />
48+
49+
<!-- THEME COLOR FOR MOBILE BROWSERS -->
50+
<meta name="theme-color" content="#667eea" />
51+
<meta name="msapplication-TileColor" content="#667eea" />
52+
1653
<!-- FAV AND ICONS -->
1754
<link
1855
rel="icon"
@@ -23,11 +60,81 @@
2360
<link
2461
rel="apple-touch-icon"
2562
href="https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png" />
63+
2664
<!-- STYLESHEET -->
2765
<link
2866
rel="stylesheet"
2967
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
3068
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
69+
70+
<!-- STRUCTURED DATA (JSON-LD) -->
71+
<script type="application/ld+json">
72+
{
73+
"@context": "https://schema.org",
74+
"@type": "Person",
75+
"name": "Dave Conco",
76+
"alternateName": "dconco",
77+
"url": "https://www.dconco.tech",
78+
"image": "https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png",
79+
"jobTitle": "Full-Stack Developer & Backend Engineer",
80+
"worksFor": {
81+
"@type": "Organization",
82+
"name": "Freelance"
83+
},
84+
"description": "Full-Stack Developer with 5+ years of experience building web applications and mobile apps",
85+
"email": "[email protected]",
86+
"telephone": "+2349064772574",
87+
"sameAs": [
88+
"https://github.com/dconco",
89+
"https://x.com/@dave_conco",
90+
"https://facebook.com/daveconco",
91+
"https://youtube.com/@daveconco",
92+
"https://tiktok.com/@dconco"
93+
],
94+
"knowsAbout": [
95+
"PHP",
96+
"C++",
97+
"Node.js",
98+
"React",
99+
"React Native",
100+
"Laravel",
101+
"MySQL",
102+
"MongoDB",
103+
"Full-Stack Development",
104+
"Backend Engineering",
105+
"Mobile App Development",
106+
"API Development"
107+
]
108+
}
109+
</script>
110+
<script type="application/ld+json">
111+
{
112+
"@context": "https://schema.org",
113+
"@type": "WebSite",
114+
"name": "Dave Conco Portfolio",
115+
"url": "https://www.dconco.tech",
116+
"description": "Portfolio website of Dave Conco - Full-Stack Developer & Backend Engineer",
117+
"author": {
118+
"@type": "Person",
119+
"name": "Dave Conco"
120+
},
121+
"inLanguage": "en-US"
122+
}
123+
</script>
124+
<script type="application/ld+json">
125+
{
126+
"@context": "https://schema.org",
127+
"@type": "ProfilePage",
128+
"mainEntity": {
129+
"@type": "Person",
130+
"name": "Dave Conco",
131+
"alternateName": "dconco",
132+
"url": "https://www.dconco.tech",
133+
"image": "https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png",
134+
"description": "Full-Stack Developer & Backend Engineer with 5+ years of experience"
135+
}
136+
}
137+
</script>
31138
</head>
32139
<body>
33140
<nav>

robots.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Robots.txt for www.dconco.tech
2+
# Allow all search engines to index the site
3+
4+
User-agent: *
5+
Allow: /
6+
7+
# Sitemap location
8+
Sitemap: https://www.dconco.tech/sitemap.xml
9+
10+
# Crawl delay (optional, helps prevent server overload)
11+
Crawl-delay: 1

sitemap.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
3+
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
4+
5+
<!-- Homepage -->
6+
<url>
7+
<loc>https://www.dconco.tech/</loc>
8+
<lastmod>2025-10-28</lastmod>
9+
<changefreq>weekly</changefreq>
10+
<priority>1.0</priority>
11+
<image:image>
12+
<image:loc>https://raw.githubusercontent.com/dconco/dconco/refs/heads/main/profile3.png</image:loc>
13+
<image:title>Dave Conco - Full-Stack Developer</image:title>
14+
</image:image>
15+
</url>
16+
17+
<!-- Home Section -->
18+
<url>
19+
<loc>https://www.dconco.tech/#home</loc>
20+
<lastmod>2025-10-28</lastmod>
21+
<changefreq>monthly</changefreq>
22+
<priority>0.9</priority>
23+
</url>
24+
25+
<!-- About Section -->
26+
<url>
27+
<loc>https://www.dconco.tech/#about</loc>
28+
<lastmod>2025-10-28</lastmod>
29+
<changefreq>monthly</changefreq>
30+
<priority>0.8</priority>
31+
</url>
32+
33+
<!-- AI Bot Section -->
34+
<url>
35+
<loc>https://www.dconco.tech/#ai-bot</loc>
36+
<lastmod>2025-10-28</lastmod>
37+
<changefreq>monthly</changefreq>
38+
<priority>0.8</priority>
39+
</url>
40+
41+
<!-- Resume Section -->
42+
<url>
43+
<loc>https://www.dconco.tech/#resume</loc>
44+
<lastmod>2025-10-28</lastmod>
45+
<changefreq>monthly</changefreq>
46+
<priority>0.8</priority>
47+
</url>
48+
49+
<!-- Projects Section -->
50+
<url>
51+
<loc>https://www.dconco.tech/#projects</loc>
52+
<lastmod>2025-10-28</lastmod>
53+
<changefreq>weekly</changefreq>
54+
<priority>0.9</priority>
55+
</url>
56+
57+
<!-- Contact Section -->
58+
<url>
59+
<loc>https://www.dconco.tech/#contact</loc>
60+
<lastmod>2025-10-28</lastmod>
61+
<changefreq>monthly</changefreq>
62+
<priority>0.7</priority>
63+
</url>
64+
65+
</urlset>

0 commit comments

Comments
 (0)