├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── bun.lock ├── components.json ├── package.json ├── public ├── favicon.svg └── profile.jpeg ├── src ├── components │ ├── AwardsSection.tsx │ ├── EducationSection.tsx │ ├── ExperienceSection.tsx │ ├── Footer.tsx │ ├── GlassHeader.tsx │ ├── HeroSection.tsx │ ├── MotionWrapper.tsx │ ├── ProjectsSection.tsx │ ├── SkillsSection.tsx │ ├── TimelineItem.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── glass-card.tsx │ │ └── theme-toggle.tsx ├── layouts │ └── Layout.astro ├── lib │ ├── data.ts │ └── utils.ts ├── pages │ └── index.astro └── styles │ └── global.css └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/components.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/public/profile.jpeg -------------------------------------------------------------------------------- /src/components/AwardsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/AwardsSection.tsx -------------------------------------------------------------------------------- /src/components/EducationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/EducationSection.tsx -------------------------------------------------------------------------------- /src/components/ExperienceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/ExperienceSection.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/GlassHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/GlassHeader.tsx -------------------------------------------------------------------------------- /src/components/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/MotionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/MotionWrapper.tsx -------------------------------------------------------------------------------- /src/components/ProjectsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/ProjectsSection.tsx -------------------------------------------------------------------------------- /src/components/SkillsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/SkillsSection.tsx -------------------------------------------------------------------------------- /src/components/TimelineItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/TimelineItem.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/glass-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/ui/glass-card.tsx -------------------------------------------------------------------------------- /src/components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/lib/data.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikesh2003/my-portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------