Skip to content

Commit e3e5829

Browse files
committed
fork and enjoy!
1 parent 0e9e94f commit e3e5829

File tree

2 files changed

+46
-4
lines changed

2 files changed

+46
-4
lines changed

Ashif/src/components/Education.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Education() {
1717
<div className="relative flex max-w-lg mx-auto flex-col items-center justify-center overflow-hidden rounded-lg border bg-background p-4">
1818
<Tree
1919
className="w-full bg-background overflow-hidden rounded-md"
20-
initialExpandedItems={["Education", "KU", "MC", "BA", "BHS", "Certifications", "Cisco", "IBM", "AWS"]}
20+
initialExpandedItems={["Education", "KU", "MC", "BA", "BHS", "Certifications"]}
2121
>
2222
<Folder element="My Education" value="Education">
2323
<Folder element="Kaziranga University" value="KU">

Ashif/src/components/ProjectsMobile.jsx

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
import React, { useState } from 'react';
22
import { Highlighter } from "@/components/ui/highlighter";
3+
// --- 1. Import your project images ---
4+
35
import project1Img from '../assets/projects/project1.png';
46
import project2Img from '../assets/projects/project2.png';
7+
import project3Img from '../assets/projects/Project3.png';
8+
import project4Img from '../assets/projects/Project4.png';
59
import project5Img from '../assets/projects/project5.png';
610
import project6Img from '../assets/projects/project6.png';
711
import project7Img from '../assets/projects/project7.png';
812
import project8Img from '../assets/projects/project8.png';
913
import project9Img from '../assets/projects/project9.png';
14+
import { Truck } from 'lucide-react';
1015

11-
// Use the same data structure as Projects.jsx, including videoUrl
16+
// --- Data for the projects ---
1217
const projectData = [
1318
{
1419
title: 'Sahityaa Sangamm',
1520
description: 'A modern e-commerce platform built with Blade and Laravel.',
21+
// Use your Cloudinary video URL here:
1622
videoUrl: 'https://res.cloudinary.com/dktapziq9/video/upload/v1764394626/1764393871242766_dqfnqn.mp4',
17-
imageUrl: project1Img,
23+
imageUrl: project1Img, // optional fallback
1824
liveUrl: 'https://sahityaasangamm.in',
1925
repoUrl: '#',
2026
tags: ['Blade', 'Laravel', 'MySQL'],
@@ -38,6 +44,42 @@ const projectData = [
3844
tags: ['Django', 'yfinance', 'Bootstrap 5'],
3945
},
4046
{
47+
title: 'Creatorhub',
48+
description: 'An Influencer Marketing platform for Creators and brands built with React.',
49+
videoUrl: 'https://res.cloudinary.com/dktapziq9/video/upload/v1764396382/1764396334647746_qruqaf.mp4',
50+
51+
liveUrl: 'https://creatorhub.in',
52+
repoUrl: '#',
53+
tags: ['React', 'Node.js', 'MongoDB'],
54+
},
55+
{
56+
title: 'Tea Country',
57+
description: 'A Tourist website created with React.',
58+
// --- 2. Use the imported variable here ---
59+
imageUrl: project2Img,
60+
liveUrl: 'https://teacountry.in',
61+
repoUrl: '#',
62+
tags: ['React', 'Vue', 'Tailwind CSS'],
63+
},
64+
// {
65+
// title: 'MeghaRise Products',
66+
// description: 'A modern e-commerce platform using React (Its Frontend Only For Now).',
67+
// // --- 2. Use the imported variable here ---
68+
// imageUrl: project3Img,
69+
// liveUrl: 'https://meghariseproducts.com',
70+
// repoUrl: '#',
71+
// tags: ['React', 'Vue', 'Tailwind CSS'],
72+
// },
73+
{
74+
title: 'Scabbard Tech',
75+
description: 'A Digital Marketing website built with React, Vue and Tailwind CSS.',
76+
videoUrl: 'https://res.cloudinary.com/dktapziq9/video/upload/v1764397211/1764397136159111_zlcckk.mp4',
77+
liveUrl: 'https://scabbardtech.com',
78+
repoUrl: '#',
79+
tags: ['React', 'Vue', 'Tailwind CSS'],
80+
},
81+
82+
{
4183
title: 'Jana Kalyan Swastha sewa',
4284
description: 'A Healthcare website built with HTML and php.',
4385
imageUrl: project6Img,
@@ -53,7 +95,7 @@ const projectData = [
5395
repoUrl: '#',
5496
tags: ['HTML', 'CSS', 'JavaScript'],
5597
},
56-
{
98+
{
5799
title: 'Earmacs',
58100
description: 'A Hotel Management website built with Wordpress and PHP.',
59101
imageUrl: project9Img,

0 commit comments

Comments
 (0)