Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishi-0007 authored Jun 20, 2024
0 parents commit 974b12c
Show file tree
Hide file tree
Showing 37 changed files with 1,504 additions and 0 deletions.
9 changes: 9 additions & 0 deletions assets/css/fontawesome.min.css

Large diffs are not rendered by default.

770 changes: 770 additions & 0 deletions assets/css/styles.css

Large diffs are not rendered by default.

Binary file added assets/img/Untitled-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/hero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/image1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/image2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/image3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/image4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/image5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/image6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/member-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/member-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/member-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/member-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/project-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/project-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/project-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/projects-bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/result-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/result-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/result-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/services-bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/testimonials-bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/testimonials.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions assets/js/fontawesome.min.js

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions assets/js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// This is script file for owl carousel

$('.testimonials-container').owlCarousel({
loop:true,
autoplay:true,
autoplayTimeout:6000,
margin:10,
nav:true,
navText:["<i class='fa-solid fa-arrow-left'></i>",
"<i class='fa-solid fa-arrow-right'></i>"],
responsive:{
0:{
items:1,
nav:false
},
600:{
items:1,
nav:true
},
768:{
items:2
},
}
})

// header
const header = document.querySelector('header');

window.addEventListener('scroll', () => {
header.classList.toggle('sticky', window.scrollY > 0);
} );

const headerMenu = document.querySelector('.header__menu');
const menuBtn = document.querySelector('.menu-btn');
const headerMenuItems = headerMenu.querySelectorAll('li a');

menuBtn.addEventListener('click', () => {
headerMenu.classList.toggle('show');
});

headerMenuItems.forEach(item => {
item.addEventListener('click', () => {
headerMenu.classList.remove('show');
});
});
Binary file added assets/webfonts/fa-brands-400.ttf
Binary file not shown.
Binary file added assets/webfonts/fa-brands-400.woff2
Binary file not shown.
Binary file added assets/webfonts/fa-regular-400.ttf
Binary file not shown.
Binary file added assets/webfonts/fa-regular-400.woff2
Binary file not shown.
Binary file added assets/webfonts/fa-solid-900.ttf
Binary file not shown.
Binary file added assets/webfonts/fa-solid-900.woff2
Binary file not shown.
Binary file added assets/webfonts/fa-v4compatibility.ttf
Binary file not shown.
Binary file added assets/webfonts/fa-v4compatibility.woff2
Binary file not shown.
Loading

0 comments on commit 974b12c

Please sign in to comment.