Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharanrr01 authored Mar 19, 2023
1 parent 12698bb commit 998aa01
Show file tree
Hide file tree
Showing 100 changed files with 15,408 additions and 0 deletions.
2,317 changes: 2,317 additions & 0 deletions css/style.css

Large diffs are not rendered by default.

Binary file added img/IMAGE-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 img/about.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 img/apple-touch-icon.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 img/bg.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 img/bg2.gif
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 img/blog/blog-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 img/blog/blog-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 img/blog/blog-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 img/blog/blog-4.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 img/blog/blog-author.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 img/blog/blog-inside-post.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 img/blog/blog-recent-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 img/blog/blog-recent-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 img/blog/blog-recent-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 img/blog/blog-recent-4.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 img/blog/blog-recent-5.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 img/blog/comments-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 img/blog/comments-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 img/blog/comments-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 img/blog/comments-4.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 img/blog/comments-5.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 img/blog/comments-6.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 img/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/features-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/features-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/features-3.svg

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions img/features-4.svg

Large diffs are not rendered by default.

Binary file added img/hero-bg.jpg
Binary file added img/image-2.jpg
Binary file added img/image-3.jpg
Binary file added img/image-4.png
Binary file added img/image-5.jpg
Binary file added img/image-6.jpeg
Binary file added img/image-7.jpg
Binary file added img/portfolio/portfolio-1.jpg
Binary file added img/portfolio/portfolio-2.jpg
Binary file added img/portfolio/portfolio-3.jpg
Binary file added img/portfolio/portfolio-4.jpg
Binary file added img/portfolio/portfolio-5.jpg
Binary file added img/portfolio/portfolio-6.jpg
Binary file added img/portfolio/portfolio-7.jpg
Binary file added img/portfolio/portfolio-8.jpg
Binary file added img/portfolio/portfolio-9.jpg
Binary file added img/portfolio/portfolio-details-1.jpg
Binary file added img/portfolio/portfolio-details-2.jpg
Binary file added img/portfolio/portfolio-details-3.jpg
Binary file added img/service-details-1.jpg
Binary file added img/service-details-2.jpg
Binary file added img/service-details-3.jpg
Binary file added img/service-details-4.jpg
Binary file added img/team/team-1.jpg
Binary file added img/team/team-2.jpg
Binary file added img/team/team-3.jpg
Binary file added img/team/team-4.jpg
Binary file added img/team/team-5.jpg
Binary file added img/team/team-6.jpg
Binary file added img/testimonials/testimonials-1.jpg
Binary file added img/testimonials/testimonials-2.jpg
Binary file added img/testimonials/testimonials-3.jpg
Binary file added img/testimonials/testimonials-4.jpg
Binary file added img/testimonials/testimonials-5.jpg
Binary file added img/why-us.jpg
236 changes: 236 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,236 @@
/**
* Template Name: Moderna
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/free-bootstrap-template-corporate-moderna/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
(function() {
"use strict";

/**
* Easy selector helper function
*/
const select = (el, all = false) => {
el = el.trim()
if (all) {
return [...document.querySelectorAll(el)]
} else {
return document.querySelector(el)
}
}

/**
* Easy event listener function
*/
const on = (type, el, listener, all = false) => {
let selectEl = select(el, all)
if (selectEl) {
if (all) {
selectEl.forEach(e => e.addEventListener(type, listener))
} else {
selectEl.addEventListener(type, listener)
}
}
}

/**
* Easy on scroll event listener
*/
const onscroll = (el, listener) => {
el.addEventListener('scroll', listener)
}

/**
* Scrolls to an element with header offset
*/
const scrollto = (el) => {
let header = select('#header')
let offset = header.offsetHeight

if (!header.classList.contains('header-scrolled')) {
offset -= 20
}

let elementPos = select(el).offsetTop
window.scrollTo({
top: elementPos - offset,
behavior: 'smooth'
})
}

/**
* Toggle .header-scrolled class to #header when page is scrolled
*/
let selectHeader = select('#header')
if (selectHeader) {
const headerScrolled = () => {
if (window.scrollY > 100) {
selectHeader.classList.add('header-scrolled')
} else {
selectHeader.classList.remove('header-scrolled')
}
}
window.addEventListener('load', headerScrolled)
onscroll(document, headerScrolled)
}

/**
* Back to top button
*/
let backtotop = select('.back-to-top')
if (backtotop) {
const toggleBacktotop = () => {
if (window.scrollY > 100) {
backtotop.classList.add('active')
} else {
backtotop.classList.remove('active')
}
}
window.addEventListener('load', toggleBacktotop)
onscroll(document, toggleBacktotop)
}

/**
* Mobile nav toggle
*/
on('click', '.mobile-nav-toggle', function(e) {
select('#navbar').classList.toggle('navbar-mobile')
this.classList.toggle('bi-list')
this.classList.toggle('bi-x')
})

/**
* Mobile nav dropdowns activate
*/
on('click', '.navbar .dropdown > a', function(e) {
if (select('#navbar').classList.contains('navbar-mobile')) {
e.preventDefault()
this.nextElementSibling.classList.toggle('dropdown-active')
}
}, true)

/**
* Scrool with ofset on links with a class name .scrollto
*/
on('click', '.scrollto', function(e) {
if (select(this.hash)) {
e.preventDefault()

let navbar = select('#navbar')
if (navbar.classList.contains('navbar-mobile')) {
navbar.classList.remove('navbar-mobile')
let navbarToggle = select('.mobile-nav-toggle')
navbarToggle.classList.toggle('bi-list')
navbarToggle.classList.toggle('bi-x')
}
scrollto(this.hash)
}
}, true)

/**
* Skills animation
*/
let skilsContent = select('.skills-content');
if (skilsContent) {
new Waypoint({
element: skilsContent,
offset: '80%',
handler: function(direction) {
let progress = select('.progress .progress-bar', true);
progress.forEach((el) => {
el.style.width = el.getAttribute('aria-valuenow') + '%'
});
}
})
}

/**
* Testimonials slider
*/
new Swiper('.testimonials-carousel', {
speed: 400,
loop: true,
autoplay: {
delay: 5000,
disableOnInteraction: false
},
pagination: {
el: '.swiper-pagination',
type: 'bullets',
clickable: true
}
});

/**
* Porfolio isotope and filter
*/
window.addEventListener('load', () => {
let portfolioContainer = select('.portfolio-container');
if (portfolioContainer) {
let portfolioIsotope = new Isotope(portfolioContainer, {
itemSelector: '.portfolio-wrap',
layoutMode: 'fitRows'
});

let portfolioFilters = select('#portfolio-flters li', true);

on('click', '#portfolio-flters li', function(e) {
e.preventDefault();
portfolioFilters.forEach(function(el) {
el.classList.remove('filter-active');
});
this.classList.add('filter-active');

portfolioIsotope.arrange({
filter: this.getAttribute('data-filter')
});
portfolioIsotope.on('arrangeComplete', function() {
AOS.refresh()
});
}, true);
}

});

/**
* Initiate portfolio lightbox
*/
const portfolioLightbox = GLightbox({
selector: '.portfolio-lightbox'
});

/**
* Portfolio details slider
*/
new Swiper('.portfolio-details-slider', {
speed: 400,
autoplay: {
delay: 5000,
disableOnInteraction: false
},
pagination: {
el: '.swiper-pagination',
type: 'bullets',
clickable: true
}
});

/**
* Animation on scroll
*/
window.addEventListener('load', () => {
AOS.init({
duration: 1000,
easing: "ease-in-out",
once: true,
mirror: false
});
});

/**
* Initiate Pure Counter
*/
new PureCounter();

})()
1 change: 1 addition & 0 deletions scss/Readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The .scss (Sass) files are only available in the pro version.
Binary file added upload/admin641612d03c7894.37333381.jpg
Binary file added upload/demo64165def7db4d2.98649853.png
Binary file added upload/df6415f042310754.45683714.jpg
Binary file added upload/dfg6415efe290cce4.36357470.jpg
Binary file added upload/elias62c1925ef0e8f7.58402794.jpg
Binary file added upload/elias62c19f5d5417f9.26929814.jpg
Binary file added upload/elias62c19f6f3e2d06.81665529.jpg
Binary file added upload/haran6416ff4c6f5028.58119454.jpg
Binary file added upload/hari6416d53fdade10.51653343.png
Binary file added upload/hariganesh6416dd65ecd423.65012337.jpg
Binary file added upload/hariharan6416d58028b6a7.30583959.png
Binary file added upload/map64160ec28ef655.21403251.jpg
Binary file added upload/master6415d535598047.16683134.jpg
Binary file added upload/men64167d914facf8.43116484.png
Binary file added upload/mm6415f97e8a5be1.05744705.jpg
Binary file added upload/rex6414fcc9275a04.76656771.jpg
Binary file added upload/rex64167c60d14cd4.97022537.png
Binary file added upload/student641662bd5e18d5.08358023.jpg
7 changes: 7 additions & 0 deletions vendor/animate.css/animate.compat.css

Large diffs are not rendered by default.

Loading

0 comments on commit 998aa01

Please sign in to comment.