Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -47,8 +47,46 @@ def home_page():
|
|
| 47 |
return """
|
| 48 |
<html>
|
| 49 |
<head>
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
<body>
|
| 53 |
<img src="/static/images/banner.jpg" alt="Banner" width="100%">
|
| 54 |
<h2>Square and Fill Image App</h2>
|
|
|
|
| 47 |
return """
|
| 48 |
<html>
|
| 49 |
<head>
|
| 50 |
+
<title>Part of Idoia's Developer Portfolio - Innovating the Web</title>
|
| 51 |
+
<link rel="stylesheet" href="/static/styles/style.css">
|
| 52 |
+
|
| 53 |
+
<!-- Meta Tags for SEO -->
|
| 54 |
+
<meta charset="UTF-8">
|
| 55 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 56 |
+
<meta name="description" content="Explore the developer portfolio of Idoia, showcasing expertise in FastAPI, web development, and cutting-edge applications.">
|
| 57 |
+
<meta name="keywords" content="Idoia, Developer, FastAPI, Web Development, Python Projects, Image Processing, Online Portfolio">
|
| 58 |
+
<meta name="author" content="Idoia">
|
| 59 |
+
|
| 60 |
+
<!-- Open Graph Meta Tags -->
|
| 61 |
+
<meta property="og:title" content="Idoia's Developer Portfolio - Innovating the Web">
|
| 62 |
+
<meta property="og:description" content="Showcasing FastAPI projects, web apps, and image processing expertise. Explore Idoia's developer journey.">
|
| 63 |
+
<meta property="og:image" content="/static/images/banner.jpg">
|
| 64 |
+
<meta property="og:url" content="https://webdevserv.github.io/html_bites/dev/webdev.html">
|
| 65 |
+
<meta property="og:type" content="website">
|
| 66 |
+
|
| 67 |
+
<!-- Twitter Card Meta Tags -->
|
| 68 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 69 |
+
<meta name="twitter:title" content="Idoia's Developer Portfolio - Innovating the Web">
|
| 70 |
+
<meta name="twitter:description" content="Discover the developer profile of Idoia. Dive into FastAPI-powered web apps and creative Python projects.">
|
| 71 |
+
<meta name="twitter:image" content="/static/images/banner.jpg">
|
| 72 |
+
<link rel="icon" href="/static/images/6464.ico" type="image/x-icon">
|
| 73 |
+
|
| 74 |
+
<!-- Google Fonts (Optional for Styling) -->
|
| 75 |
+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
| 76 |
+
|
| 77 |
+
<!-- Schema.org JSON-LD (Optional for Rich Snippets) -->
|
| 78 |
+
<script type="application/ld+json">
|
| 79 |
+
{
|
| 80 |
+
"@context": "https://schema.org",
|
| 81 |
+
"@type": "Person",
|
| 82 |
+
"name": "Idoia",
|
| 83 |
+
"jobTitle": "Web Developer",
|
| 84 |
+
"url": "https://webdevserv.github.io/html_bites/dev/webdev.html",
|
| 85 |
+
"image": "https://idoia-dev-portfolio.com/static/images/banner.jpg",
|
| 86 |
+
"description": "Experienced web developer with a focus on Streamlit, HF, Python, and modern web applications."
|
| 87 |
+
}
|
| 88 |
+
</script>
|
| 89 |
+
</head>
|
| 90 |
<body>
|
| 91 |
<img src="/static/images/banner.jpg" alt="Banner" width="100%">
|
| 92 |
<h2>Square and Fill Image App</h2>
|