-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
96 lines (91 loc) · 3.89 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const projects = [
{
title: "Open-CV Projects ",
description: "OpenCV Projects Build to ",
image: "./images/01-Tribute.png",
web: "https://github.com/jjf2009?tab=repositories",
git: "https://github.com/jjf2009/OpenCV_Projects"
},
{
title: "Steve Jobs Tribute",
description: "A tribute page dedicated to Steve Jobs, showcasing responsive design and modern web principles.",
image: "./images/01-Tribute.png",
web: "https://steve-jobs-tribute.vercel.app/",
git: "https://github.com/jjf2009/Steve_Jobs_Tribute"
},
{
title: "Pokedex",
description: "An interactive Pokedex application built to showcase Pokemon data with responsive design.",
image: "./images/02.png",
web: "https://pokedex-rho-lake.vercel.app/",
git: "https://github.com/jjf2009/PokemonSearchApp"
},
{
title: "Connect 4",
description: "A fun Connect 4 game implemented with engaging UI and responsive design.",
image: "./images/03.png",
web: "https://connet-4.vercel.app/",
git: "https://github.com/jjf2009/Connet-4"
},
{
title: "Todo App",
description: "A simple and efficient Todo application to manage tasks with responsive design.",
image: "/images/04.png",
web: "https://basic-todo-one.vercel.app/",
git: "https://github.com/jjf2009/BasicTodo"
},
{
title: "Company Registration Portal",
description: "A portal for registering companies with a user-friendly interface and responsive design.",
image: "/images/05.png",
web: "https://companydirectoryportal.vercel.app/",
git: " https://github.com/jjf2009/CompanyDirectoryPortal.git"
},
{
title: "Country Code Finder",
description: "A tool to search and find country codes, built with a responsive interface.",
image: "/images/06.png",
web: "https://country-search-hackathon.vercel.app/",
git: "https://github.com/jjf2009/Search-Bar-Hackathon"
},
{
title: "Nike Website Clone",
description: "A clone of the Nike website with responsive design and modern web practices.",
image: "/images/07.png",
web: "https://nike-landing-lac.vercel.app/",
git: "https://github.com/jjf2009/Nike_New"
},
{
title: "Palindrome Checker",
description: "An application to check if a word or phrase is a palindrome, featuring responsive design.",
image: "/images/08.png",
web: "https://palindrome-checker-chi.vercel.app/",
git: "https://github.com/jjf2009/Palindrome_Checker"
},
{
title: "Roman Number Converter",
description: "A tool to convert numbers to Roman numerals, built with a responsive layout.",
image: "/images/09.png",
web: "https://roman-number-converter-delta.vercel.app/",
git: "https://github.com/jjf2009/Roman_Number_Converter-"
}
];
const projectsContainer = document.getElementById('pro');
projects.forEach(project => {
const projectHTML = `
<div class="col-md-4" data-aos="fade-up">
<div class="project-card card h-100 cbp-item bg-light">
<div class="card-body">
<h3 class="h5 card-title">${project.title}</h3>
<p class="card-text">${project.description}</p>
<div class="d-flex gap-2 ">
<a href="${project.web}" class="btn btn-primary btn-sm" target="_blank">Live Demo</a>
<a href="${project.git}" class="btn btn-outline-primary btn-sm" target="_blank">Source Code</a>
</div>
</div>
</div>
</div>
`;
projectsContainer.innerHTML += projectHTML;
});
// <img src="${project.image}" class="card-img-top" alt="${project.title}">