-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (77 loc) · 3.81 KB
/
Copy pathindex.html
File metadata and controls
82 lines (77 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- SEO Meta Tags -->
<title>Profession Portrait AI - Visualize Your Future Career</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Upload a photo, choose a profession, and let AI generate photorealistic images of a person as both a seasoned professional and a child professional. Powered by Google Gemini." />
<meta name="keywords" content="AI Portrait, Profession Generator, AI Image, Future Self, Career Visualization, Gemini AI, Artificial Intelligence" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Profession Portrait AI - Visualize Your Future Career" />
<meta property="og:description" content="Upload a photo, choose a profession, and let AI generate photorealistic images of a person as both a seasoned professional and a child professional." />
<meta property="og:image" content="https://storage.googleapis.com/aistudio-public/gallery/2c2e434a-e092-4511-be80-63952f531393/social.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Profession Portrait AI - Visualize Your Future Career" />
<meta property="twitter:description" content="Upload a photo, choose a profession, and let AI generate photorealistic images of a person as both a seasoned professional and a child professional." />
<meta property="twitter:image" content="https://storage.googleapis.com/aistudio-public/gallery/2c2e434a-e092-4511-be80-63952f531393/social.png" />
<!-- Favicon -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✨</text></svg>">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
animation: {
'shimmer': 'shimmer 2s linear infinite',
'fadeInUp': 'fadeInUp 0.8s ease-out forwards',
'fadeIn': 'fadeIn 0.3s ease-out forwards',
'zoomIn': 'zoomIn 0.3s ease-out forwards',
},
keyframes: {
shimmer: {
'0%': { 'background-position': '-1000px 0' },
'100%': { 'background-position': '1000px 0' },
},
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
zoomIn: {
'0%': { opacity: '0', transform: 'scale(0.9)' },
'100%': { opacity: '1', transform: 'scale(1)' },
},
},
}
}
}
</script>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.29.1"
}
}
</script>
</head>
<body class="bg-gray-900 text-white font-sans">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>