diff --git a/docusaurus.config.ts b/docusaurus.config.ts index fdc0673..b6d628e 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -234,6 +234,11 @@ const config: Config = { ], // hideOnScroll: true, }, + footer: { + style: 'dark', + links: [], + copyright: `Copyright © ${new Date().getFullYear()} recodehive. Built with Docusaurus.`, + }, prism: { theme: prismThemes.github, darkTheme: prismThemes.dracula, diff --git a/src/pages/blogs/blogs-new.css b/src/pages/blogs/blogs-new.css index 66ad722..8b39c59 100644 --- a/src/pages/blogs/blogs-new.css +++ b/src/pages/blogs/blogs-new.css @@ -7,36 +7,413 @@ font-family: 'Inter', sans-serif; background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 50%, #e8ebff 100%); min-height: 100vh; + animation: pageSlideIn 0.8s ease-out; + position: relative; + overflow-x: hidden; +} + +/* Dark theme support */ +[data-theme='dark'] .blog-page { + background: linear-gradient(135deg, #1b1b1d 0%, #121212 50%, #1a202c 100%); +} + +@keyframes pageSlideIn { + 0% { + opacity: 0; + transform: translateY(20px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} + +/* Navbar adjustments */ +:global(.navbar) { + backdrop-filter: blur(20px) !important; + background: rgba(255, 255, 255, 0.95) !important; + border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important; + transition: all 0.3s ease !important; + height: 60px !important; + min-height: 60px !important; +} + +:global(.navbar--fixed-top) { + animation: navbarSlideDown 0.6s ease-out; +} + +@keyframes navbarSlideDown { + 0% { + transform: translateY(-100%); + opacity: 0; + } + 100% { + transform: translateY(0); + opacity: 1; + } } /* Hero Section */ .blog-hero-section { padding: 80px 20px 60px; text-align: center; - background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 50%, #e8ebff 100%); + background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 30%, #e8ebff 70%, #f0f4ff 100%); + position: relative; + overflow: hidden; + min-height: 50vh; + display: flex; + align-items: center; + margin-top: -10px; +} + +[data-theme='dark'] .blog-hero-section { + background: linear-gradient(135deg, #1b1b1d 0%, #121212 30%, #1a202c 70%, #242526 100%); +} + +.blog-hero-section::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: + radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 40%), + radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 45%), + radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%); + pointer-events: none; + animation: gradientShift 8s ease-in-out infinite; +} + +.blog-hero-section::after { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); + pointer-events: none; + animation: float 20s linear infinite; +} + +@keyframes gradientShift { + 0%, 100% { + background: + radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 40%), + radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 45%), + radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%); + } + 50% { + background: + radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 45%), + radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 40%), + radial-gradient(circle at 60% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%); + } +} + +@keyframes float { + 0% { + transform: translateY(0px) translateX(0px); + } + 33% { + transform: translateY(-10px) translateX(5px); + } + 66% { + transform: translateY(5px) translateX(-5px); + } + 100% { + transform: translateY(0px) translateX(0px); + } +} + +/* Floating Particles */ +.floating-particles { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + overflow: hidden; + pointer-events: none; + z-index: 0; +} + +.particle { + position: absolute; + border-radius: 50%; + opacity: 0.6; + animation-timing-function: ease-in-out; + animation-iteration-count: infinite; +} + +.particle-1 { + width: 8px; + height: 8px; + background: linear-gradient(45deg, #6366f1, #8b5cf6); + top: 20%; + left: 10%; + animation: particleFloat1 8s infinite; +} + +.particle-2 { + width: 12px; + height: 12px; + background: linear-gradient(45deg, #a855f7, #ec4899); + top: 60%; + left: 80%; + animation: particleFloat2 10s infinite; +} + +.particle-3 { + width: 6px; + height: 6px; + background: linear-gradient(45deg, #ec4899, #f59e0b); + top: 30%; + left: 70%; + animation: particleFloat3 12s infinite; +} + +.particle-4 { + width: 10px; + height: 10px; + background: linear-gradient(45deg, #f59e0b, #10b981); + top: 80%; + left: 20%; + animation: particleFloat4 9s infinite; +} + +.particle-5 { + width: 14px; + height: 14px; + background: linear-gradient(45deg, #10b981, #06b6d4); + top: 15%; + left: 90%; + animation: particleFloat5 11s infinite; +} + +.particle-6 { + width: 7px; + height: 7px; + background: linear-gradient(45deg, #06b6d4, #6366f1); + top: 70%; + left: 5%; + animation: particleFloat6 13s infinite; +} + +@keyframes particleFloat1 { + 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); } + 25% { transform: translateY(-30px) translateX(20px) rotate(90deg); } + 50% { transform: translateY(-10px) translateX(-15px) rotate(180deg); } + 75% { transform: translateY(20px) translateX(10px) rotate(270deg); } +} + +@keyframes particleFloat2 { + 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); } + 33% { transform: translateY(25px) translateX(-20px) rotate(120deg); } + 66% { transform: translateY(-15px) translateX(25px) rotate(240deg); } +} + +@keyframes particleFloat3 { + 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); } + 50% { transform: translateY(-40px) translateX(-30px) rotate(180deg); } +} + +@keyframes particleFloat4 { + 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); } + 25% { transform: translateY(-20px) translateX(30px) rotate(90deg); } + 50% { transform: translateY(15px) translateX(-10px) rotate(180deg); } + 75% { transform: translateY(-5px) translateX(-25px) rotate(270deg); } +} + +@keyframes particleFloat5 { + 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); } + 40% { transform: translateY(30px) translateX(-35px) rotate(144deg); } + 80% { transform: translateY(-25px) translateX(15px) rotate(288deg); } +} + +@keyframes particleFloat6 { + 0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); } + 30% { transform: translateY(-35px) translateX(25px) rotate(108deg); } + 60% { transform: translateY(20px) translateX(-20px) rotate(216deg); } + 90% { transform: translateY(-10px) translateX(35px) rotate(324deg); } } .blog-hero-container { - max-width: 800px; + max-width: 900px; margin: 0 auto; + position: relative; + z-index: 1; +} + +.hero-content { + display: flex; + flex-direction: column; + align-items: center; + gap: 24px; + position: relative; +} + +.hero-content::before { + content: ''; + position: absolute; + top: -60px; + left: -80px; + width: 120px; + height: 120px; + background: linear-gradient(45deg, #6366f1, #a855f7); + border-radius: 50%; + opacity: 0.08; + animation: floatLeft 6s ease-in-out infinite; + z-index: -1; +} + +.hero-content::after { + content: ''; + position: absolute; + top: 100px; + right: -60px; + width: 80px; + height: 80px; + background: linear-gradient(45deg, #ec4899, #f59e0b); + border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; + opacity: 0.08; + animation: floatRight 8s ease-in-out infinite; + z-index: -1; +} + +@keyframes floatLeft { + 0%, 100% { + transform: translateY(0px) rotate(0deg); + } + 50% { + transform: translateY(-25px) rotate(180deg); + } +} + +@keyframes floatRight { + 0%, 100% { + transform: translateY(0px) rotate(0deg); + } + 50% { + transform: translateY(20px) rotate(-180deg); + } } + + .blog-main-title { - font-size: 48px; - font-weight: 700; - margin: 0 0 16px 0; - background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%); + font-size: 64px; + font-weight: 900; + margin: 0; + line-height: 1.1; + color: #1e293b; + letter-spacing: -0.02em; + animation: titleSlideUp 1s ease-out; +} + +[data-theme='dark'] .blog-main-title { + color: #f1f5f9; +} + +@keyframes titleSlideUp { + 0% { + opacity: 0; + transform: translateY(30px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} + +.gradient-text { + background: linear-gradient(135deg, #6366f1 0%, #a855f7 30%, #ec4899 70%, #f59e0b 100%); + background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; - line-height: 1.2; + animation: gradientMove 4s ease-in-out infinite; + position: relative; +} + +.gradient-text::before { + content: attr(data-text); + position: absolute; + top: 0; + left: 0; + background: linear-gradient(135deg, #6366f1 0%, #a855f7 30%, #ec4899 70%, #f59e0b 100%); + background-size: 300% 300%; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + filter: blur(1px); + opacity: 0.5; + z-index: -1; + animation: gradientMove 4s ease-in-out infinite reverse; } +@keyframes gradientMove { + 0%, 100% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } +} + + + .blog-main-subtitle { - font-size: 16px; + font-size: 18px; color: #64748b; - margin: 0 0 40px 0; - line-height: 1.6; + margin: 0; + line-height: 1.7; + max-width: 700px; + font-weight: 400; +} + +[data-theme='dark'] .blog-main-subtitle { + color: #94a3b8; +} + +.hero-stats { + display: flex; + align-items: center; + gap: 32px; + margin-top: 16px; + padding: 20px 32px; + background: rgba(255, 255, 255, 0.8); + border: 1px solid rgba(99, 102, 241, 0.1); + border-radius: 16px; + backdrop-filter: blur(10px); + box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1); +} + +.stat-item { + display: flex; + flex-direction: column; + align-items: center; + gap: 4px; +} + +.stat-number { + font-size: 24px; + font-weight: 700; + color: #1e293b; + line-height: 1; +} + +.stat-label { + font-size: 14px; + color: #64748b; + font-weight: 500; +} + +.stat-divider { + width: 1px; + height: 32px; + background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.2), transparent); } /* Category Icons */ @@ -131,10 +508,15 @@ /* Latest Articles Section */ .latest-articles-section { - padding: 80px 20px; + padding: 60px 20px 80px; background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); position: relative; overflow: hidden; + margin-top: -20px; +} + +[data-theme='dark'] .latest-articles-section { + background: linear-gradient(135deg, #121212 0%, #1a202c 100%); } .latest-articles-section::before { @@ -155,6 +537,18 @@ margin: 0 auto; position: relative; z-index: 1; + animation: contentSlideUp 1s ease-out 0.3s both; +} + +@keyframes contentSlideUp { + 0% { + opacity: 0; + transform: translateY(30px); + } + 100% { + opacity: 1; + transform: translateY(0); + } } .section-header { @@ -173,6 +567,10 @@ position: relative; } +[data-theme='dark'] .section-title { + color: #f1f5f9; +} + .section-title::after { content: ''; position: absolute; @@ -195,57 +593,139 @@ font-weight: 400; } +[data-theme='dark'] .section-subtitle { + color: #94a3b8; +} + /* Search Container */ .search-container { - max-width: 500px; - margin: 40px auto 0; + max-width: 600px; + margin: 60px auto 0; position: relative; } +.search-container::before { + content: ''; + position: absolute; + top: -20px; + left: -20px; + right: -20px; + bottom: -20px; + background: linear-gradient(45deg, #6366f1, #a855f7, #ec4899, #f59e0b); + background-size: 400% 400%; + border-radius: 32px; + opacity: 0.08; + animation: searchGlow 6s ease-in-out infinite; + z-index: -1; +} + +@keyframes searchGlow { + 0%, 100% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } +} + .search-wrapper { position: relative; display: flex; align-items: center; - background: white; - border-radius: 16px; - padding: 16px 20px; - box-shadow: - 0 4px 20px rgba(0, 0, 0, 0.08), - 0 1px 3px rgba(0, 0, 0, 0.1); + background: rgba(255, 255, 255, 0.95); + backdrop-filter: blur(30px); border: 2px solid transparent; - transition: all 0.3s ease; - backdrop-filter: blur(10px); + border-radius: 24px; + padding: 20px 28px; + box-shadow: + 0 20px 60px rgba(0, 0, 0, 0.08), + 0 8px 32px rgba(99, 102, 241, 0.1), + 0 0 0 1px rgba(255, 255, 255, 0.2) inset; + transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); + background-image: linear-gradient(white, white), + linear-gradient(135deg, #6366f1, #a855f7, #ec4899); + background-origin: border-box; + background-clip: padding-box, border-box; + animation: searchFloat 4s ease-in-out infinite; +} + +[data-theme='dark'] .search-wrapper { + background: rgba(36, 37, 38, 0.95); + box-shadow: + 0 20px 60px rgba(0, 0, 0, 0.4), + 0 8px 32px rgba(99, 102, 241, 0.2), + 0 0 0 1px rgba(255, 255, 255, 0.05) inset; + background-image: linear-gradient(rgba(36, 37, 38, 0.95), rgba(36, 37, 38, 0.95)), + linear-gradient(135deg, #6366f1, #a855f7, #ec4899); +} + +@keyframes searchFloat { + 0%, 100% { + transform: translateY(0px); + } + 50% { + transform: translateY(-3px); + } } .search-wrapper:focus-within { - border-color: #6366f1; + transform: translateY(-8px) scale(1.02); box-shadow: - 0 8px 30px rgba(99, 102, 241, 0.15), - 0 0 0 4px rgba(99, 102, 241, 0.1); - transform: translateY(-2px); + 0 32px 80px rgba(0, 0, 0, 0.12), + 0 16px 48px rgba(99, 102, 241, 0.2), + 0 0 0 1px rgba(255, 255, 255, 0.3) inset; + animation-play-state: paused; } .search-icon { - width: 22px; - height: 22px; + width: 24px; + height: 24px; color: #6366f1; - margin-right: 16px; + margin-right: 18px; flex-shrink: 0; - transition: color 0.2s ease; + transition: all 0.3s ease; + animation: iconPulse 2s ease-in-out infinite; +} + +@keyframes iconPulse { + 0%, 100% { + opacity: 0.8; + transform: scale(1); + } + 50% { + opacity: 1; + transform: scale(1.05); + } } .search-wrapper:focus-within .search-icon { color: #4f46e5; + animation-play-state: paused; + transform: scale(1.1); } .search-input { flex: 1; border: none; outline: none; - font-size: 16px; + font-size: 17px; color: #1e293b; background: transparent; font-weight: 500; + letter-spacing: 0.01em; + transition: all 0.2s ease; +} + +.search-input:focus { + color: #0f172a; +} + +[data-theme='dark'] .search-input { + color: #f1f5f9; +} + +[data-theme='dark'] .search-input:focus { + color: #ffffff; } .search-input::placeholder { @@ -253,6 +733,58 @@ font-weight: 400; } +.clear-search-icon { + width: 24px; + height: 24px; + color: #94a3b8; + background: none; + border: none; + cursor: pointer; + padding: 6px; + border-radius: 50%; + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); + margin-left: 12px; + flex-shrink: 0; + position: relative; + overflow: hidden; +} + +.clear-search-icon::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: linear-gradient(45deg, #ef4444, #f97316); + border-radius: 50%; + opacity: 0; + transform: scale(0); + transition: all 0.3s ease; +} + +.clear-search-icon:hover { + color: white; + transform: scale(1.1); +} + +.clear-search-icon:hover::before { + opacity: 1; + transform: scale(1); +} + +.clear-search-icon svg { + width: 100%; + height: 100%; + position: relative; + z-index: 1; + transition: transform 0.2s ease; +} + +.clear-search-icon:hover svg { + transform: rotate(90deg); +} + .search-decoration { display: none; } @@ -397,6 +929,33 @@ transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border: 1px solid rgba(255, 255, 255, 0.8); + animation: cardSlideIn 0.6s ease-out both; +} + +[data-theme='dark'] .article-card { + background: #242526; + border: 1px solid rgba(74, 85, 104, 0.3); + box-shadow: + 0 4px 20px rgba(0, 0, 0, 0.4), + 0 1px 3px rgba(0, 0, 0, 0.3); +} + +.article-card:nth-child(1) { animation-delay: 0.1s; } +.article-card:nth-child(2) { animation-delay: 0.2s; } +.article-card:nth-child(3) { animation-delay: 0.3s; } +.article-card:nth-child(4) { animation-delay: 0.4s; } +.article-card:nth-child(5) { animation-delay: 0.5s; } +.article-card:nth-child(6) { animation-delay: 0.6s; } + +@keyframes cardSlideIn { + 0% { + opacity: 0; + transform: translateY(40px) scale(0.95); + } + 100% { + opacity: 1; + transform: translateY(0) scale(1); + } } .article-card::before { @@ -419,6 +978,12 @@ 0 8px 20px rgba(99, 102, 241, 0.1); } +[data-theme='dark'] .article-card:hover { + box-shadow: + 0 20px 60px rgba(0, 0, 0, 0.6), + 0 8px 20px rgba(99, 102, 241, 0.2); +} + .article-card:hover::before { opacity: 1; } @@ -442,12 +1007,24 @@ letter-spacing: 0.5px; } +[data-theme='dark'] .card-category { + background: linear-gradient(135deg, rgba(36, 37, 38, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%); + color: #a78bfa; + border: 1px solid rgba(167, 139, 250, 0.2); + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); +} + .article-card:hover .card-category { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: white; transform: scale(1.05); } +[data-theme='dark'] .article-card:hover .card-category { + background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%); + color: #1a202c; +} + .card-image { height: 220px; overflow: hidden; @@ -504,6 +1081,10 @@ background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%); } +[data-theme='dark'] .card-content { + background: linear-gradient(135deg, rgba(36, 37, 38, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%); +} + .card-title { font-size: 22px; font-weight: 700; @@ -518,6 +1099,14 @@ color: #6366f1; } +[data-theme='dark'] .card-title { + color: #f1f5f9; +} + +[data-theme='dark'] .article-card:hover .card-title { + color: #a78bfa; +} + .card-description { font-size: 15px; color: #64748b; @@ -530,6 +1119,10 @@ font-weight: 400; } +[data-theme='dark'] .card-description { + color: #94a3b8; +} + /* Responsive card content */ @media (max-width: 767px) and (min-width: 576px) { .card-content { @@ -574,6 +1167,8 @@ padding-bottom: 20px; border-bottom: 1px solid rgba(226, 232, 240, 0.8); position: relative; + gap: 12px; + flex-wrap: wrap; } .card-meta::before { @@ -598,6 +1193,8 @@ display: flex; align-items: center; gap: 10px; + flex: 1; + min-width: 0; /* Allow text to shrink */ } .author-avatar { @@ -608,16 +1205,93 @@ display: flex; align-items: center; justify-content: center; - font-size: 14px; + font-size: 16px; color: white; font-weight: 600; box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3); + flex-shrink: 0; + transition: all 0.3s ease; +} + +.author-avatar:hover { + transform: scale(1.1); + box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4); } .author-name { font-size: 13px; color: #475569; font-weight: 600; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 100%; + position: relative; + cursor: help; + transition: color 0.2s ease; +} + +.author-name:hover { + color: #6366f1; +} + +[data-theme='dark'] .author-name { + color: #cbd5e1; +} + +[data-theme='dark'] .author-name:hover { + color: #a78bfa; +} + +/* Tooltip for author names */ +.author-name::after { + content: attr(data-full-name); + position: absolute; + bottom: 100%; + left: 50%; + transform: translateX(-50%); + background: rgba(0, 0, 0, 0.9); + color: white; + padding: 8px 12px; + border-radius: 6px; + font-size: 12px; + white-space: nowrap; + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + z-index: 1000; + pointer-events: none; + margin-bottom: 5px; +} + +.author-name::before { + content: ''; + position: absolute; + bottom: 100%; + left: 50%; + transform: translateX(-50%); + border: 5px solid transparent; + border-top-color: rgba(0, 0, 0, 0.9); + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + z-index: 1000; + pointer-events: none; +} + +[data-theme='dark'] .author-name::after { + background: rgba(18, 18, 18, 0.95); + color: #f7fafc; +} + +[data-theme='dark'] .author-name::before { + border-top-color: rgba(18, 18, 18, 0.95); +} + +.author-name:hover::after, +.author-name:hover::before { + opacity: 1; + visibility: visible; } .card-read-time { @@ -629,6 +1303,11 @@ border-radius: 12px; } +[data-theme='dark'] .card-read-time { + color: #64748b; + background: rgba(100, 116, 139, 0.2); +} + /* Responsive card meta */ @media (max-width: 767px) and (min-width: 576px) { .card-meta { @@ -656,6 +1335,14 @@ .card-meta { margin-bottom: 16px; padding-bottom: 16px; + flex-direction: column; + align-items: flex-start; + gap: 8px; + } + + .card-author { + width: 100%; + gap: 8px; } .author-avatar { @@ -666,11 +1353,17 @@ .author-name { font-size: 12px; + white-space: normal; + overflow: visible; + text-overflow: unset; + line-height: 1.3; } .card-read-time { font-size: 11px; padding: 3px 6px; + align-self: flex-end; + margin-top: -4px; } } diff --git a/src/pages/blogs/index.tsx b/src/pages/blogs/index.tsx index ba6fe4d..9008244 100644 --- a/src/pages/blogs/index.tsx +++ b/src/pages/blogs/index.tsx @@ -4,9 +4,21 @@ import Layout from "@theme/Layout"; import Link from "@docusaurus/Link"; import blogs from "../../database/blogs/index"; import Head from "@docusaurus/Head"; -import { FaCode, FaPalette, FaBrain, FaStar } from "react-icons/fa"; + import "./blogs-new.css"; +// Author mapping based on actual blog posts +const authorMapping = { + "streamline-ux-ui": ["Sowmiya Venketashan", "Sanjay Viswanthan"], + "ux-ui-design-job": ["Sowmiya Venketashan", "Sanjay Viswanthan"], + "ux-designers-ai": ["Sowmiya Venketashan", "Sanjay Viswanthan"], + "google-deepmind": ["Sowmiya Venketashan", "Sanjay Viswanthan"], + "google-backlinks": ["Sanjay Viswanthan"], + "git-coding-agent": ["Sanjay Viswanthan"] +}; + + + export default function Blogs(): React.JSX.Element { const { siteConfig } = useDocusaurusContext(); const [searchTerm, setSearchTerm] = useState(""); @@ -42,46 +54,37 @@ export default function Blogs(): React.JSX.Element {
- Discover web development articles ranging from HTML and CSS to JavaScript, React,
- Node.js, DSA, and much more
-
+ Discover comprehensive web development articles, tutorials, and insights covering + everything from HTML & CSS fundamentals to advanced JavaScript, React, Node.js, + Data Structures & Algorithms, and cutting-edge technologies. +
- +
- Stay updated with the latest trends, tutorials, and insights from the world of
- technology and design
-