|
| 1 | +// SEO Configuration for the portfolio site |
| 2 | +// Update these values with your actual information |
| 3 | + |
| 4 | +export const SEO_CONFIG = { |
| 5 | + // Site Information |
| 6 | + siteName: "Arvind Singharpuria", |
| 7 | + siteUrl: "https://www.arvind.app", |
| 8 | + |
| 9 | + // Default Meta |
| 10 | + defaultTitle: "Arvind Singharpuria | Full Stack Developer, DevOps & AI Expert", |
| 11 | + defaultDescription: "I'm Arvind Singharpuria, a full stack developer specializing in DevOps, AI prototyping, and building high-quality MVPs. Let's bring your ideas to life.", |
| 12 | + |
| 13 | + // Author Information |
| 14 | + author: { |
| 15 | + name: "Arvind Singharpuria", |
| 16 | + |
| 17 | + url: "https://arvind.app", |
| 18 | + twitter: "@ai_arvind", |
| 19 | + github: "Arvind644", |
| 20 | + linkedin: "arvind-singharpuria", |
| 21 | + }, |
| 22 | + |
| 23 | + // Social Media |
| 24 | + social: { |
| 25 | + twitter: "@ai_arvind", |
| 26 | + twitterSite: "@ai_arvind", |
| 27 | + }, |
| 28 | + |
| 29 | + // Default Open Graph |
| 30 | + defaultOg: { |
| 31 | + type: "website", |
| 32 | + image: "/opengraph-image.jpg", |
| 33 | + imageAlt: "Arvind Singharpuria - Full Stack Developer & DevOps Engineer", |
| 34 | + imageWidth: 1200, |
| 35 | + imageHeight: 630, |
| 36 | + }, |
| 37 | + |
| 38 | + // Keywords |
| 39 | + defaultKeywords: [ |
| 40 | + "Full Stack Developer", |
| 41 | + "DevOps Engineer", |
| 42 | + "AI Prototyping", |
| 43 | + "MVP Development", |
| 44 | + "Web Development", |
| 45 | + "Software Engineer", |
| 46 | + "React Developer", |
| 47 | + "Node.js Developer", |
| 48 | + "Cloud Architecture", |
| 49 | + "Arvind Singharpuria", |
| 50 | + ], |
| 51 | + |
| 52 | + // Language & Locale |
| 53 | + locale: "en_US", |
| 54 | + language: "en", |
| 55 | +} as const; |
| 56 | + |
| 57 | +// Page-specific SEO configurations |
| 58 | +export const PAGE_SEO = { |
| 59 | + home: { |
| 60 | + title: "Arvind Singharpuria | Full Stack Developer, DevOps & AI Expert", |
| 61 | + description: "I'm Arvind Singharpuria, specializing in full stack development, DevOps, and AI prototyping. Building fast, beautiful, and high-quality software solutions.", |
| 62 | + keywords: ["portfolio", "full stack developer", "devops", "AI", "software engineer"], |
| 63 | + }, |
| 64 | + projects: { |
| 65 | + title: "Projects | Arvind Singharpuria", |
| 66 | + description: "Explore my portfolio of projects including web applications, MVPs, and open-source contributions. See real examples of my full stack development and DevOps work.", |
| 67 | + keywords: ["projects", "portfolio", "web applications", "MVP development", "open source"], |
| 68 | + }, |
| 69 | + speaking: { |
| 70 | + title: "Speaking & Talks | Arvind Singharpuria", |
| 71 | + description: "Conference talks and presentations on DevOps, cloud architecture, and software development. Book me for your next event or meetup.", |
| 72 | + keywords: ["conference talks", "tech speaker", "presentations", "DevOps talks", "developer advocate"], |
| 73 | + }, |
| 74 | + tutorials: { |
| 75 | + title: "Tutorials & Blog | Arvind Singharpuria", |
| 76 | + description: "Technical tutorials and blog posts on DevOps, cloud computing, containerization, and modern software development practices.", |
| 77 | + keywords: ["tutorials", "blog", "DevOps tutorials", "cloud computing", "technical articles"], |
| 78 | + }, |
| 79 | + mvp: { |
| 80 | + title: "MVP Development Services | Fast, Beautiful, High-Quality", |
| 81 | + description: "We build fast, beautiful, and high-quality MVPs. Turn your vision into reality with expert full stack development, modern UI/UX, and reliable deployment.", |
| 82 | + keywords: ["MVP development", "startup development", "product development", "SaaS development", "web app development"], |
| 83 | + }, |
| 84 | +} as const; |
| 85 | + |
| 86 | +// JSON-LD Schemas |
| 87 | +export function getPersonSchema(siteUrl: string) { |
| 88 | + return { |
| 89 | + "@context": "https://schema.org", |
| 90 | + "@type": "Person", |
| 91 | + name: SEO_CONFIG.author.name, |
| 92 | + url: siteUrl, |
| 93 | + email: SEO_CONFIG.author.email, |
| 94 | + jobTitle: "Full Stack Developer & DevOps Engineer", |
| 95 | + description: SEO_CONFIG.defaultDescription, |
| 96 | + sameAs: [ |
| 97 | + `https://twitter.com/${SEO_CONFIG.author.twitter.replace("@", "")}`, |
| 98 | + `https://github.com/${SEO_CONFIG.author.github}`, |
| 99 | + `https://linkedin.com/in/${SEO_CONFIG.author.linkedin}`, |
| 100 | + ], |
| 101 | + knowsAbout: [ |
| 102 | + "Full Stack Development", |
| 103 | + "DevOps", |
| 104 | + "Cloud Architecture", |
| 105 | + "AI/ML", |
| 106 | + "React", |
| 107 | + "Node.js", |
| 108 | + "Docker", |
| 109 | + "Kubernetes", |
| 110 | + ], |
| 111 | + }; |
| 112 | +} |
| 113 | + |
| 114 | +export function getWebsiteSchema(siteUrl: string) { |
| 115 | + return { |
| 116 | + "@context": "https://schema.org", |
| 117 | + "@type": "WebSite", |
| 118 | + name: SEO_CONFIG.siteName, |
| 119 | + url: siteUrl, |
| 120 | + description: SEO_CONFIG.defaultDescription, |
| 121 | + author: { |
| 122 | + "@type": "Person", |
| 123 | + name: SEO_CONFIG.author.name, |
| 124 | + }, |
| 125 | + }; |
| 126 | +} |
| 127 | + |
| 128 | +export function getArticleSchema(options: { |
| 129 | + title: string; |
| 130 | + description: string; |
| 131 | + url: string; |
| 132 | + publishedAt: Date; |
| 133 | + modifiedAt?: Date; |
| 134 | + image?: string; |
| 135 | + siteUrl: string; |
| 136 | +}) { |
| 137 | + return { |
| 138 | + "@context": "https://schema.org", |
| 139 | + "@type": "Article", |
| 140 | + headline: options.title, |
| 141 | + description: options.description, |
| 142 | + url: options.url, |
| 143 | + datePublished: options.publishedAt.toISOString(), |
| 144 | + dateModified: (options.modifiedAt || options.publishedAt).toISOString(), |
| 145 | + image: options.image || `${options.siteUrl}/opengraph-image.jpg`, |
| 146 | + author: { |
| 147 | + "@type": "Person", |
| 148 | + name: SEO_CONFIG.author.name, |
| 149 | + url: options.siteUrl, |
| 150 | + }, |
| 151 | + publisher: { |
| 152 | + "@type": "Person", |
| 153 | + name: SEO_CONFIG.author.name, |
| 154 | + }, |
| 155 | + }; |
| 156 | +} |
| 157 | + |
| 158 | +export function getServiceSchema(siteUrl: string) { |
| 159 | + return { |
| 160 | + "@context": "https://schema.org", |
| 161 | + "@type": "ProfessionalService", |
| 162 | + name: "MVP Development Services by Arvind Singharpuria", |
| 163 | + description: "We build fast, beautiful, and high-quality MVPs. Expert full stack development with modern UI/UX and reliable deployment.", |
| 164 | + url: `${siteUrl}/mvp`, |
| 165 | + provider: { |
| 166 | + "@type": "Person", |
| 167 | + name: SEO_CONFIG.author.name, |
| 168 | + }, |
| 169 | + areaServed: "Worldwide", |
| 170 | + hasOfferCatalog: { |
| 171 | + "@type": "OfferCatalog", |
| 172 | + name: "MVP Development Services", |
| 173 | + itemListElement: [ |
| 174 | + { |
| 175 | + "@type": "Offer", |
| 176 | + itemOffered: { |
| 177 | + "@type": "Service", |
| 178 | + name: "Landing Page Development", |
| 179 | + description: "Responsive design with modern UI/UX, contact forms, SEO optimization, and deployment included.", |
| 180 | + }, |
| 181 | + price: "1000", |
| 182 | + priceCurrency: "USD", |
| 183 | + }, |
| 184 | + { |
| 185 | + "@type": "Offer", |
| 186 | + itemOffered: { |
| 187 | + "@type": "Service", |
| 188 | + name: "MVP Development", |
| 189 | + description: "3-5 core features, custom UI/UX design, payment integration, user authentication, and CI/CD deployment.", |
| 190 | + }, |
| 191 | + price: "5000", |
| 192 | + priceCurrency: "USD", |
| 193 | + }, |
| 194 | + ], |
| 195 | + }, |
| 196 | + }; |
| 197 | +} |
| 198 | + |
0 commit comments