├── .github └── FUNDING.yml ├── public ├── favicon.ico ├── og-image.jpg ├── profile.jpg ├── favicon-96x96.png ├── Rushikesh_Nimkar.pdf ├── apple-touch-icon.png ├── projects │ ├── gitsplit.webp │ ├── communepro.webp │ └── cryptorage.webp ├── rushikesh_nimkar.jpg ├── rushikesh_nimkar1.jpg ├── web-app-manifest-192x192.png ├── web-app-manifest-512x512.png ├── window.svg ├── file.svg ├── sitemap.xml ├── robots.txt ├── site.webmanifest ├── globe.svg └── next.svg ├── postcss.config.mjs ├── lib ├── utils.ts ├── chat │ ├── types.ts │ └── intent-detector.ts ├── hooks │ └── use-mouse-position.ts ├── verifyEmail.ts ├── actions │ └── sendEmail.ts ├── cors.ts └── embeddings.ts ├── next.config.ts ├── eslint.config.mjs ├── components.json ├── components ├── tools │ ├── ai-chat-cards │ │ ├── index.ts │ │ ├── ExperienceCard.tsx │ │ ├── ProjectsCard.tsx │ │ ├── SkillsCard.tsx │ │ ├── SmartSuggestions.tsx │ │ ├── ContactCard.tsx │ │ └── LinkCard.tsx │ ├── githubcontribution.tsx │ ├── ai-chat │ │ └── types.ts │ ├── emailTemplates.tsx │ ├── ai-chat-modal.tsx │ └── VoiceInput.tsx ├── seo │ ├── structured-data.tsx │ └── image-structured-data.tsx ├── console-message.tsx ├── ui │ ├── magnetic-button.tsx │ ├── text-reveal.tsx │ ├── tilt-card.tsx │ ├── flip-words.tsx │ ├── sparkles.tsx │ ├── text-hover-effect.tsx │ ├── ai-chat-animation.tsx │ ├── timeline.tsx │ └── TextGenerationEffect.tsx ├── common │ └── footer.tsx ├── character │ └── character.ts ├── neural-background.tsx ├── resume │ └── pdf-viewer.tsx └── artistic-background.tsx ├── .gitignore ├── tsconfig.json ├── .env.example ├── app ├── api │ ├── verify-email │ │ └── route.ts │ ├── auth │ │ └── route.ts │ ├── generate-email │ │ └── route.ts │ ├── send-email │ │ └── route.ts │ ├── chat │ │ └── route.ts │ └── analyze-skills │ │ └── route.ts ├── metadata.ts ├── layout.tsx ├── globals.css ├── github │ └── page.tsx ├── about │ └── page.tsx └── skills │ └── page.tsx ├── LICENSE ├── scripts ├── test-embedding-dim.ts └── init-vector-store.ts ├── package.json ├── data └── prompt-data.ts ├── tailwind.config.ts └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: Rushikeshnimkar 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/og-image.jpg -------------------------------------------------------------------------------- /public/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/profile.jpg -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/Rushikesh_Nimkar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/Rushikesh_Nimkar.pdf -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/projects/gitsplit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/projects/gitsplit.webp -------------------------------------------------------------------------------- /public/rushikesh_nimkar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/rushikesh_nimkar.jpg -------------------------------------------------------------------------------- /public/rushikesh_nimkar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/rushikesh_nimkar1.jpg -------------------------------------------------------------------------------- /public/projects/communepro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/projects/communepro.webp -------------------------------------------------------------------------------- /public/projects/cryptorage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/projects/cryptorage.webp -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushikeshnimkar/portfolio2025/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- 1 | import { clsx, type ClassValue } from "clsx" 2 | import { twMerge } from "tailwind-merge" 3 | 4 | export function cn(...inputs: ClassValue[]) { 5 | return twMerge(clsx(inputs)) 6 | } 7 | -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- 1 | import type { NextConfig } from "next"; 2 | 3 | const nextConfig: NextConfig = { 4 | /* config options here */ 5 | images: { 6 | domains: ["img.youtube.com"], 7 | }, 8 | }; 9 | 10 | export default nextConfig; 11 | -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import { dirname } from "path"; 2 | import { fileURLToPath } from "url"; 3 | import { FlatCompat } from "@eslint/eslintrc"; 4 | 5 | const __filename = fileURLToPath(import.meta.url); 6 | const __dirname = dirname(__filename); 7 | 8 | const compat = new FlatCompat({ 9 | baseDirectory: __dirname, 10 | }); 11 | 12 | const eslintConfig = [ 13 | ...compat.extends("next/core-web-vitals", "next/typescript"), 14 | ]; 15 | 16 | export default eslintConfig; 17 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | https://rushikeshnimkar.xyz 5 | 2024-11-24 6 | monthly 7 | 1.0 8 | 9 | 10 | https://rushikeshnimkar.xyz/resume 11 | 2024-11-24 12 | monthly 13 | 0.9 14 | 15 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # * 2 | User-agent: * 3 | Allow: / 4 | Disallow: /api/ 5 | Disallow: /admin/ 6 | 7 | # Host 8 | Host: https://rushikeshnimkar.xyz 9 | 10 | # Sitemaps 11 | Sitemap: https://rushikeshnimkar.xyz/sitemap.xml 12 | 13 | # Crawl-delay 14 | Crawl-delay: 10 15 | 16 | # Google Bot 17 | User-agent: Googlebot 18 | Allow: / 19 | Crawl-delay: 5 20 | 21 | # Bing Bot 22 | User-agent: Bingbot 23 | Allow: / 24 | Crawl-delay: 5 25 | 26 | # DuckDuckGo Bot 27 | User-agent: DuckDuckBot 28 | Allow: / 29 | Crawl-delay: 5 -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "new-york", 4 | "rsc": true, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.ts", 8 | "css": "app/globals.css", 9 | "baseColor": "zinc", 10 | "cssVariables": true, 11 | "prefix": "" 12 | }, 13 | "aliases": { 14 | "components": "@/components", 15 | "utils": "@/lib/utils", 16 | "ui": "@/components/ui", 17 | "lib": "@/lib", 18 | "hooks": "@/hooks" 19 | }, 20 | "iconLibrary": "lucide" 21 | } -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rushikesh", 3 | "short_name": "Rushi", 4 | "icons": [ 5 | { 6 | "src": "/web-app-manifest-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png", 9 | "purpose": "maskable" 10 | }, 11 | { 12 | "src": "/web-app-manifest-512x512.png", 13 | "sizes": "512x512", 14 | "type": "image/png", 15 | "purpose": "maskable" 16 | } 17 | ], 18 | "theme_color": "#141313", 19 | "background_color": "#171717", 20 | "display": "standalone" 21 | } -------------------------------------------------------------------------------- /components/tools/ai-chat-cards/index.ts: -------------------------------------------------------------------------------- 1 | export { default as SkillsCard } from "./SkillsCard"; 2 | export { default as ProjectsCard } from "./ProjectsCard"; 3 | export { default as ExperienceCard } from "./ExperienceCard"; 4 | export { default as ContactCard } from "./ContactCard"; 5 | export { default as LinkCard } from "./LinkCard"; 6 | 7 | export type { Skill } from "./SkillsCard"; 8 | export type { Project } from "./ProjectsCard"; 9 | export type { Experience } from "./ExperienceCard"; 10 | export type { Contact } from "./ContactCard"; 11 | export type { Link } from "./LinkCard"; 12 | -------------------------------------------------------------------------------- /lib/chat/types.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | export interface ChatMessage { 4 | type: "user" | "assistant"; 5 | content: string; 6 | } 7 | 8 | export interface StructuredContent { 9 | type: string; 10 | data: unknown; 11 | } 12 | 13 | export interface ChatResponse { 14 | content: string; 15 | structuredContent?: StructuredContent; 16 | } 17 | 18 | export interface OpenRouterMessage { 19 | role: "user" | "system" | "assistant"; 20 | content: string; 21 | } 22 | 23 | export interface OpenRouterFields { 24 | temperature?: number; 25 | [key: string]: unknown; 26 | } 27 | -------------------------------------------------------------------------------- /lib/hooks/use-mouse-position.ts: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | 3 | export function useMousePosition() { 4 | const [mousePosition, setMousePosition] = useState({ x: 0, y: 0 }); 5 | 6 | useEffect(() => { 7 | const updateMousePosition = (ev: MouseEvent) => { 8 | setMousePosition({ x: ev.clientX, y: ev.clientY }); 9 | }; 10 | 11 | window.addEventListener('mousemove', updateMousePosition); 12 | 13 | return () => { 14 | window.removeEventListener('mousemove', updateMousePosition); 15 | }; 16 | }, []); 17 | 18 | return mousePosition; 19 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.* 7 | .yarn/* 8 | !.yarn/patches 9 | !.yarn/plugins 10 | !.yarn/releases 11 | !.yarn/versions 12 | 13 | # testing 14 | /coverage 15 | 16 | # next.js 17 | /.next/ 18 | /out/ 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | .pnpm-debug.log* 32 | 33 | # env files (can opt-in for committing if needed) 34 | .env 35 | 36 | # vercel 37 | .vercel 38 | 39 | # typescript 40 | *.tsbuildinfo 41 | next-env.d.ts 42 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2017", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "noEmit": true, 9 | "esModuleInterop": true, 10 | "module": "esnext", 11 | "moduleResolution": "bundler", 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "jsx": "preserve", 15 | "incremental": true, 16 | "plugins": [ 17 | { 18 | "name": "next" 19 | } 20 | ], 21 | "paths": { 22 | "@/*": ["./*"] 23 | }, 24 | "baseUrl": "." 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | EMAIL_USER="your emailid" 2 | EMAIL_APP_PASSWORD="your App Password" # get it from your Google Account settings 3 | ABSTRACT_API_KEY="your abstract api key" # https://app.abstractapi.com/ 4 | OPENROUTER_API_KEY="your openrouter api key" # https://openrouter.ai/ 5 | TAVILY_API_KEY="your Tavily api key" # https://tavily.com/ 6 | 7 | # Vector Database (Pinecone) 8 | PINECONE_API_KEY="your Pinecone API key" # https://app.pinecone.io/ 9 | PINECONE_INDEX_NAME="your index name" # e.g., portfolio-embeddings 10 | 11 | # Google Gemini (for embeddings) 12 | GOOGLE_API_KEY="your Google API key" # https://ai.google.dev/ 13 | 14 | #jwt auth 15 | JWT_EXPIRY="1m" 16 | JWT_SECRET="your jwt token" # use this command for linux = "openssl rand -hex 64" or node -e "console.log(require('crypto').randomBytes(32).toString('hex'))" (works on windows/linux/mac) 17 | -------------------------------------------------------------------------------- /components/seo/structured-data.tsx: -------------------------------------------------------------------------------- 1 | export function PersonSchema() { 2 | return ( 3 |