├── .cursor └── rules │ └── posthog-integration.mdc ├── .gitignore ├── LICENSE ├── README.md ├── env-example ├── eslint.config.mjs ├── lib ├── posthog.ts └── utils.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── CV.pdf ├── certificates │ ├── YYQL3U4QAZJF_GIT_GITHUB.png │ ├── 2AUUVS958L5Y_PYTHON.png │ ├── 2Y8NRQC5MP96_INTRO_BE.png │ ├── 3UPD6SABRD3B_INTRO_WEB.png │ ├── 3YRA842UKERB_DJANGO.png │ ├── 5FNQEGLH78UD_DATABASES_FOR_BACKEND.png │ ├── 6RUAYHXFV5XZ_Foundations_data.png │ ├── BLGJKHN6UTSF_version_control.png │ ├── CS50_SQL.png │ ├── EXFQ7QMJYUQQ_AWS.png │ ├── N9LJFAWZXTMA_DATABASES.png │ └── P67DLWJP2GL7_DEVOPS.png ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── favicon.ico │ ├── favicon.png │ ├── globals.css │ ├── layout.tsx │ └── page.tsx └── components │ ├── AnimatedBackground.tsx │ ├── PostHogProvider.tsx │ ├── SocketioIcon.tsx │ ├── ThemeProvider.tsx │ ├── ThemeToggle.tsx │ └── portfolio │ ├── AboutSection.tsx │ ├── Background.tsx │ ├── CertificationsSection.tsx │ ├── ContactSection.tsx │ ├── ExperienceSection.tsx │ ├── Footer.tsx │ ├── HeroSection.tsx │ ├── Navigation.tsx │ ├── OverviewSection.tsx │ ├── ProjectsSection.tsx │ ├── SectionHeader.tsx │ ├── TechStackSection.tsx │ ├── TestimonialsSection.tsx │ ├── TypewriterRole.tsx │ └── index.ts ├── tailwind.config.js └── tsconfig.json /.cursor/rules/posthog-integration.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/.cursor/rules/posthog-integration.mdc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/README.md -------------------------------------------------------------------------------- /env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/env-example -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/posthog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/lib/posthog.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/CV.pdf -------------------------------------------------------------------------------- /public/certificates/ YYQL3U4QAZJF_GIT_GITHUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/ YYQL3U4QAZJF_GIT_GITHUB.png -------------------------------------------------------------------------------- /public/certificates/2AUUVS958L5Y_PYTHON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/2AUUVS958L5Y_PYTHON.png -------------------------------------------------------------------------------- /public/certificates/2Y8NRQC5MP96_INTRO_BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/2Y8NRQC5MP96_INTRO_BE.png -------------------------------------------------------------------------------- /public/certificates/3UPD6SABRD3B_INTRO_WEB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/3UPD6SABRD3B_INTRO_WEB.png -------------------------------------------------------------------------------- /public/certificates/3YRA842UKERB_DJANGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/3YRA842UKERB_DJANGO.png -------------------------------------------------------------------------------- /public/certificates/5FNQEGLH78UD_DATABASES_FOR_BACKEND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/5FNQEGLH78UD_DATABASES_FOR_BACKEND.png -------------------------------------------------------------------------------- /public/certificates/6RUAYHXFV5XZ_Foundations_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/6RUAYHXFV5XZ_Foundations_data.png -------------------------------------------------------------------------------- /public/certificates/BLGJKHN6UTSF_version_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/BLGJKHN6UTSF_version_control.png -------------------------------------------------------------------------------- /public/certificates/CS50_SQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/CS50_SQL.png -------------------------------------------------------------------------------- /public/certificates/EXFQ7QMJYUQQ_AWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/EXFQ7QMJYUQQ_AWS.png -------------------------------------------------------------------------------- /public/certificates/N9LJFAWZXTMA_DATABASES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/N9LJFAWZXTMA_DATABASES.png -------------------------------------------------------------------------------- /public/certificates/P67DLWJP2GL7_DEVOPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/certificates/P67DLWJP2GL7_DEVOPS.png -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/public/window.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/app/favicon.png -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/AnimatedBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/AnimatedBackground.tsx -------------------------------------------------------------------------------- /src/components/PostHogProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/PostHogProvider.tsx -------------------------------------------------------------------------------- /src/components/SocketioIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/SocketioIcon.tsx -------------------------------------------------------------------------------- /src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/portfolio/AboutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/AboutSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/Background.tsx -------------------------------------------------------------------------------- /src/components/portfolio/CertificationsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/CertificationsSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/ContactSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/ContactSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/ExperienceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/ExperienceSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/Footer.tsx -------------------------------------------------------------------------------- /src/components/portfolio/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/Navigation.tsx -------------------------------------------------------------------------------- /src/components/portfolio/OverviewSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/OverviewSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/ProjectsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/ProjectsSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/SectionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/SectionHeader.tsx -------------------------------------------------------------------------------- /src/components/portfolio/TechStackSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/TechStackSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/TestimonialsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/TestimonialsSection.tsx -------------------------------------------------------------------------------- /src/components/portfolio/TypewriterRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/TypewriterRole.tsx -------------------------------------------------------------------------------- /src/components/portfolio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/src/components/portfolio/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightify97/portfolio/HEAD/tsconfig.json --------------------------------------------------------------------------------