|
| 1 | +import type { Project } from '$lib/types'; |
| 2 | + |
| 3 | +// Featured projects for home page |
| 4 | +export const featuredProjects: Project[] = [ |
| 5 | + { |
| 6 | + title: "Modern Portfolio Website", |
| 7 | + description: "A responsive portfolio built with SvelteKit, Tailwind CSS, and modern web technologies.", |
| 8 | + tech: ["SvelteKit", "TypeScript", "Tailwind CSS"], |
| 9 | + github: "https://github.com/modeitsch", |
| 10 | + demo: "https://modeitsch.com" |
| 11 | + }, |
| 12 | + { |
| 13 | + title: "Open Source Contributions", |
| 14 | + description: "Various contributions to open source projects and personal coding experiments.", |
| 15 | + tech: ["JavaScript", "Python", "Git"], |
| 16 | + github: "https://github.com/modeitsch", |
| 17 | + demo: "https://github.com/modeitsch" |
| 18 | + }, |
| 19 | + { |
| 20 | + title: "Web Development Projects", |
| 21 | + description: "Collection of web applications and tools built with modern frameworks and libraries.", |
| 22 | + tech: ["React", "Vue.js", "Node.js"], |
| 23 | + github: "https://github.com/modeitsch", |
| 24 | + demo: "https://modeitsch.com" |
| 25 | + } |
| 26 | +]; |
| 27 | + |
| 28 | +// All projects for projects page |
| 29 | +export const allProjects: Project[] = [ |
| 30 | + { |
| 31 | + title: "Modern Portfolio Website", |
| 32 | + description: "A fully responsive, modern portfolio website built with SvelteKit and TailwindCSS. Features dark/light mode, smooth animations, and optimized performance.", |
| 33 | + tech: ["SvelteKit", "TailwindCSS", "GitHub Pages"], |
| 34 | + github: "https://github.com/modeitsch/sveltekit-blog", |
| 35 | + demo: "https://modeitsch.github.io/sveltekit-blog" |
| 36 | + }, |
| 37 | + { |
| 38 | + title: "React Hebrew Docs", |
| 39 | + description: "Contributing to the Hebrew translation of React.js documentation, making React more accessible to Hebrew-speaking developers.", |
| 40 | + tech: ["React", "i18n", "Documentation"], |
| 41 | + github: "https://github.com/modeitsch/he.reactjs.org", |
| 42 | + demo: "https://github.com/modeitsch/he.reactjs.org" |
| 43 | + }, |
| 44 | + { |
| 45 | + title: "Web Components Library", |
| 46 | + description: "A collection of reusable web components built with modern JavaScript, focusing on accessibility and performance.", |
| 47 | + tech: ["JavaScript", "Web Components", "A11y"], |
| 48 | + github: "https://github.com/modeitsch", |
| 49 | + demo: "https://github.com/modeitsch" |
| 50 | + }, |
| 51 | + { |
| 52 | + title: "API Dashboard", |
| 53 | + description: "A comprehensive dashboard for monitoring and managing APIs with real-time analytics and performance metrics.", |
| 54 | + tech: ["Node.js", "Express", "MongoDB"], |
| 55 | + github: "https://github.com/modeitsch", |
| 56 | + demo: "https://github.com/modeitsch" |
| 57 | + }, |
| 58 | + { |
| 59 | + title: "E-commerce Platform", |
| 60 | + description: "Full-stack e-commerce solution with payment integration, inventory management, and admin dashboard.", |
| 61 | + tech: ["React", "Node.js", "Stripe"], |
| 62 | + github: "https://github.com/modeitsch", |
| 63 | + demo: "https://github.com/modeitsch" |
| 64 | + }, |
| 65 | + { |
| 66 | + title: "DevTools Extension", |
| 67 | + description: "Browser extension for developers with productivity tools, code snippets, and debugging utilities.", |
| 68 | + tech: ["JavaScript", "Chrome API", "CSS"], |
| 69 | + github: "https://github.com/modeitsch", |
| 70 | + demo: "https://github.com/modeitsch" |
| 71 | + } |
| 72 | +]; |
0 commit comments