Skip to content

Commit fe937f9

Browse files
committed
Hope you all like this!
1 parent e996d56 commit fe937f9

File tree

572 files changed

+55
-222450
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

572 files changed

+55
-222450
lines changed

Ashif/package-lock.json

Lines changed: 13 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Ashif/src/components/About.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function About({ scrollContainerRef }) {
1717
scrollContainerRef={scrollContainerRef}
1818
baseOpacity={0}
1919
enableBlur={true}
20-
baseRotation={5}
20+
baseRotation={0}
2121
blurStrength={10}
2222
containerClassName="my-12"
2323
textClassName="font-sans text-base sm:text-lg md:text-xl"

Ashif/src/components/ContactForm.jsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ export default function ContactForm() {
1717
setForm({ ...form, [e.target.name]: e.target.value });
1818
};
1919

20-
const handleSubmit = (e) => {
21-
e.preventDefault();
22-
alert('Message sent!');
23-
setForm({ name: '', email: '', message: '' });
24-
};
25-
2620
return (
2721
<div id="contact" className="relative flex w-full items-center justify-center overflow-hidden bg-background pt-16 pb-32 md:pt-24 md:pb-48">
2822
<GridPattern
@@ -38,7 +32,10 @@ export default function ContactForm() {
3832
{/* Centered Form */}
3933
<div className="max-w-md mx-auto px-8 py-6 bg-gray-50 rounded-lg shadow-lg">
4034
<h2 className="text-2xl font-semibold text-gray-800 mb-4 text-center">Contact Me</h2>
41-
<form onSubmit={handleSubmit}>
35+
<form
36+
action="https://formspree.io/f/xrbwdkqb"
37+
method="POST"
38+
>
4239
<div className="mb-4">
4340
<label className="block text-gray-800 mb-1" htmlFor="name">Your Name</label>
4441
<input

Ashif/src/components/Projects.jsx

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ const projectData = [
2525
{
2626
title: 'Sahityaa Sangamm',
2727
description: 'A modern e-commerce platform built with Blade and Laravel.',
28-
// --- 2. Use the imported variable here ---
29-
imageUrl: project1Img,
28+
// Use your Cloudinary video URL here:
29+
videoUrl: 'https://res.cloudinary.com/dktapziq9/video/upload/v1764394626/1764393871242766_dqfnqn.mp4',
30+
imageUrl: project1Img, // optional fallback
3031
liveUrl: 'https://sahityaasangamm.in',
3132
repoUrl: '#',
3233
tags: ['Blade', 'Laravel', 'MySQL'],
3334
},
3435
{
3536
title: 'Portfolio Website',
3637
description: 'My personal portfolio website built with React and Tailwind CSS.',
38+
videoUrl: 'https://res.cloudinary.com/dktapziq9/video/upload/v1764395075/1764395026924189_ij9257.mov',
3739
imageUrl: project7Img,
3840
liveUrl: 'https://ashifelahi.netlify.app',
3941
repoUrl: 'https://github.com/Deadcoder001/React-Personal-Portfolio.git',
@@ -42,6 +44,7 @@ const projectData = [
4244
{
4345
title: 'ONS Trading Application',
4446
description: 'A real-time trading application using Django and Bootstrap 5.',
47+
videoUrl: 'https://res.cloudinary.com/dktapziq9/video/upload/v1764395357/1764395325884939_lrg7f4.mp4',
4548
imageUrl: project5Img,
4649
liveUrl: 'https://ons-trading.onrender.com',
4750
repoUrl: 'https://github.com/Deadcoder001/ons_trading.git',
@@ -61,7 +64,7 @@ const projectData = [
6164
description: 'A modern e-commerce platform using React (Its Frontend Only For Now).',
6265
// --- 2. Use the imported variable here ---
6366
imageUrl: project3Img,
64-
liveUrl: '#',
67+
liveUrl: 'https://meghariseproducts.com',
6568
repoUrl: '#',
6669
tags: ['React', 'Vue', 'Tailwind CSS'],
6770
},
@@ -117,11 +120,22 @@ const ProjectCard = ({ project }) => (
117120
style={{ border: '1px solid #e5e7eb' }}
118121
>
119122
<div className="flex flex-col h-full bg-white rounded-[16px] overflow-hidden">
120-
<img
121-
src={project.imageUrl}
122-
alt={project.title}
123-
className="w-full h-1/2 object-cover"
124-
/>
123+
{project.videoUrl ? (
124+
<video
125+
src={project.videoUrl}
126+
autoPlay
127+
loop
128+
muted
129+
className="w-full h-1/2 object-cover"
130+
poster={project.imageUrl}
131+
/>
132+
) : (
133+
<img
134+
src={project.imageUrl}
135+
alt={project.title}
136+
className="w-full h-1/2 object-cover"
137+
/>
138+
)}
125139
<div className="p-4 flex-grow flex flex-col">
126140
<h3 className="text-lg font-bold text-gray-900 mb-1">
127141
{project.title}

Ashif/src/components/Skills.jsx

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const skillsRow1 = [
1515
];
1616

1717
const skillsRow2 = [
18-
1918
<Html key="html" />,
2019
<MongoDB key="mongodb" />,
2120
<PostgreSQL key="postgresql" />,
@@ -38,7 +37,21 @@ export default function Skills() {
3837
</h2>
3938
</div>
4039
</div>
41-
<div className="flex flex-col gap-4">
40+
<div className="relative max-w-screen-lg mx-auto flex flex-col gap-4">
41+
{/* Left Blur */}
42+
<div className="pointer-events-none absolute left-0 top-0 h-full w-16 z-10"
43+
style={{
44+
background: 'linear-gradient(to right, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0))',
45+
filter: 'blur(6px)'
46+
}}
47+
/>
48+
{/* Right Blur */}
49+
<div className="pointer-events-none absolute right-0 top-0 h-full w-16 z-10"
50+
style={{
51+
background: 'linear-gradient(to left, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0))',
52+
filter: 'blur(6px)'
53+
}}
54+
/>
4255
<VelocityText baseVelocity={-5} numCopies={4}>
4356
{skillsRow1.map((logo, index) => (
4457
<div key={index} className="w-20 h-20 text-gray-600 mx-4">

node_modules/.bin/esbuild

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.bin/jiti

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.bin/nanoid

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.bin/rollup

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.bin/vite

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)