File tree Expand file tree Collapse file tree 3 files changed +0
-33
lines changed Expand file tree Collapse file tree 3 files changed +0
-33
lines changed Original file line number Diff line number Diff line change 120
120
flex-direction : column;
121
121
align-items : center;
122
122
}
123
-
124
- /* Visual indicator for current position */
125
- .carousel-progress {
126
- height : 4px ;
127
- width : 80% ;
128
- background-color : rgba (0 , 0 , 0 , 0.1 );
129
- border-radius : 2px ;
130
- margin : 0 auto 1rem ;
131
- overflow : hidden;
132
- }
133
-
134
- .carousel-progress-bar {
135
- height : 100% ;
136
- background-color : var (--accent-color );
137
- transition : width 0.5s ease-in-out;
138
- border-radius : 2px ;
139
- }
Original file line number Diff line number Diff line change @@ -110,8 +110,6 @@ function renderProjects(projects = []) {
110
110
111
111
// Render skills
112
112
function renderSkills ( skills ) {
113
- console . log ( 'Skills data received:' , skills ) ; // Debug log
114
-
115
113
if ( ! skills ) {
116
114
console . error ( 'No skills data provided' ) ;
117
115
return ;
@@ -124,8 +122,6 @@ function renderSkills(skills) {
124
122
'.skills-group:nth-child(2) .skills-grid'
125
123
) ;
126
124
127
- console . log ( 'Grid elements:' , { technicalGrid, professionalGrid } ) ; // Debug log
128
-
129
125
if ( ! technicalGrid || ! professionalGrid ) {
130
126
console . error ( 'Skills grid elements not found' , {
131
127
technicalGrid : ! ! technicalGrid ,
Original file line number Diff line number Diff line change @@ -123,18 +123,6 @@ export class Carousel {
123
123
}
124
124
}
125
125
126
- createProgressBar ( container ) {
127
- const progressContainer = document . createElement ( 'div' ) ;
128
- progressContainer . className = 'carousel-progress' ;
129
-
130
- this . progressBar = document . createElement ( 'div' ) ;
131
- this . progressBar . className = 'carousel-progress-bar' ;
132
- this . progressBar . style . width = `${ ( 1 / this . totalSlides ) * 100 } %` ;
133
-
134
- progressContainer . appendChild ( this . progressBar ) ;
135
- container . appendChild ( progressContainer ) ;
136
- }
137
-
138
126
getItemsPerSlide ( ) {
139
127
const viewportWidth = window . innerWidth ;
140
128
You can’t perform that action at this time.
0 commit comments