File size: 11,404 Bytes
47314f8 |
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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parixit Sutariya Analysis | Flutterfolio</title>
<link rel="icon" type="image/x-icon" href="https://static.photos/blue/200x200/7">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
.gradient-text {
background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<!-- Navigation -->
<nav class="py-6 px-4 sm:px-8 lg:px-16 backdrop-blur-md bg-gray-900/50 border-b border-gray-800">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="dribbble" class="text-blue-400 w-6 h-6"></i>
<span class="text-xl font-bold gradient-text">Flutterfolio</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="hover:text-blue-400 transition">Home</a>
<a href="index.html#about" class="hover:text-blue-400 transition">About</a>
<a href="index.html#projects" class="hover:text-blue-400 transition">Projects</a>
<a href="index.html#skills" class="hover:text-blue-400 transition">Skills</a>
<a href="index.html#contact" class="hover:text-blue-400 transition">Contact</a>
<a href="analysis.html" class="text-blue-400">Analysis</a>
</div>
<button class="md:hidden" id="menu-toggle">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</div>
</nav>
<!-- Main Content -->
<main class="container mx-auto px-4 sm:px-8 lg:px-16 py-12">
<div class="max-w-4xl mx-auto bg-gray-800/50 rounded-xl p-8 shadow-xl">
<h1 class="text-3xl font-bold mb-6 text-center gradient-text">Parixit Sutariya Analysis</h1>
<div class="mb-8">
<div class="flex items-center mb-4">
<input type="text" id="search-query"
class="flex-grow px-4 py-3 bg-gray-700/50 border border-gray-700 rounded-l-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"
placeholder="Enter search query" value="Parixit Sutariya">
<button id="search-btn"
class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-r-lg font-medium transition">
Search
</button>
</div>
<p class="text-gray-400 text-sm">Enter a name or topic to analyze search results from Google.</p>
</div>
<div id="results-container" class="space-y-6 hidden">
<div class="border-b border-gray-700 pb-6">
<h2 class="text-2xl font-semibold mb-2">Analysis Results</h2>
<div class="flex space-x-4 mb-4">
<div class="flex-1 bg-gray-700/50 p-4 rounded-lg">
<h3 class="text-blue-400 mb-2">Most Common Sources</h3>
<div id="sources-chart" class="h-48"></div>
</div>
<div class="flex-1 bg-gray-700/50 p-4 rounded-lg">
<h3 class="text-blue-400 mb-2">Sentiment Analysis</h3>
<div id="sentiment-chart" class="h-48"></div>
</div>
</div>
</div>
<div id="search-results" class="space-y-4">
<!-- Results will be populated here by JavaScript -->
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="py-8 px-4 sm:px-8 lg:px-16 border-t border-gray-800 mt-12">
<div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i data-feather="dribbble" class="text-blue-400 w-5 h-5"></i>
<span class="text-lg font-bold gradient-text">Flutterfolio</span>
</div>
<div class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 Flutterfolio. All rights reserved.
</div>
</div>
</footer>
<script>
</script>
</body>
</html> |