-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7984f59
Showing
11,303 changed files
with
2,355,714 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
runtime: python39 | ||
handlers: | ||
- url: /$ | ||
static_files: dist/index.html | ||
upload: dist/index.html | ||
- url: /(.*) | ||
static_files: dist/\1 | ||
upload: dist/(.*) | ||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,257 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>CaroGen Corporation</title> | ||
<link rel="icon" type="image/png" href="./images/home/vector.svg" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap" | ||
rel="stylesheet" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&family=Roboto:wght@100;300;400;500;700;900&display=swap" | ||
rel="stylesheet" /> | ||
<!-- build:css --> | ||
<link rel="stylesheet" href="css/styles.css" /> | ||
<!-- endbuild --> | ||
<link rel="stylesheet" href="./scss/components/_header.scss" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.compat.css" /> | ||
<!-- build:css --> | ||
<link rel="stylesheet" href="css/tailwind.css" /> | ||
<!-- endbuild --> | ||
<link rel="stylesheet" href="css/lib/swiper-bundle.min.css" /> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,900,900i" rel="stylesheet"> | ||
<script src="https://code.jquery.com/jquery-3.7.0.min.js" | ||
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script> | ||
</head> | ||
|
||
<body class="wow fadeIn"> | ||
<a id="button"></a> | ||
<header class="page-header"> | ||
<div class="container mx-auto"> | ||
<nav class="flex justify-between items-center navbar"> | ||
<div class="brandLogo"> | ||
<a href="./index.html"> <img src="./images/footer-logo.png" /></a> | ||
</div> | ||
<div class="nav-res"> | ||
<div class="menuToggle"> | ||
<input type="checkbox" id="myCheckbox" /> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
<nav class="sliding-navbar" role="navigation"> | ||
|
||
|
||
<ul class="menuItem navbar--items"> | ||
<li class=" navbar--item"> | ||
<a class="current" href="./index.html">Home</a> | ||
</li> | ||
<li class=" dropdown dropdown-2 navbar--item"> | ||
<div> | ||
<p>About</p> | ||
<ul class="nav-lists"> | ||
<li><a class="current" href="aboutus.html">- About Us</a></li> | ||
<li><a href="ourteam.html">- Management</a></li> | ||
</ul> | ||
</div> | ||
</li> | ||
<li class=" navbar--item"> | ||
<div> | ||
<p>AVIDIO</p> | ||
<ul class="nav-lists"> | ||
<li> <a href="avidioplatform.html">- AVIDIO</a></li> | ||
<li><a href="carg201.html">- CARG-201</a></li> | ||
<li> <a href="carg2020.html">- CARG-2020</a></li> | ||
</ul> | ||
</div> | ||
</li> | ||
<li class=" navbar--item"><a href="./pipeline.html">Pipeline</a></li> | ||
<li class=" navbar--item"><a href="./news.html">News</a></li> | ||
</ul> | ||
</nav> | ||
<div class="mask"></div> | ||
</div> | ||
<div class="menu"> | ||
<ul class="menu-items flex gap-10"> | ||
<li class="menu-item"> | ||
<a href="./index.html">Home</a> | ||
</li> | ||
<li class=" dropdown dropdown-2 menu-item"> | ||
<div class="dropdown"> | ||
<button class="dropbtn about-active">About</button> | ||
<div class="dropdown-content"> | ||
<a class="current" href="aboutus.html">About Us</a> | ||
<a href="ourteam.html"> Management</a> | ||
|
||
</div> | ||
</div> | ||
</li> | ||
<li class="menu-item"> | ||
<div class="dropdown"> | ||
<button class="dropbtn">AVIDIO</button> | ||
<div class="dropdown-content"> | ||
<a href="avidioplatform.html">AVIDIO</a> | ||
<a href="carg201.html">CARG-201</a> | ||
<a href="carg2020.html"> CARG-2020</a> | ||
|
||
</div> | ||
</div> | ||
</li> | ||
<li class="menu-item"><a href="./pipeline.html">Pipeline</a></li> | ||
<li class="menu-item"><a href="./news.html">News</a></li> | ||
|
||
</ul> | ||
</div> | ||
</nav> | ||
</div> | ||
</header> | ||
<main class="about-slider-1 page-transition"> | ||
<section class="about-slider banner-img page-transition md:pt-24 pb-10"> | ||
<div class="container text-center mx-auto md:pt-28 pb-22"> | ||
<img src="./images/about-us-logo.png" class="inline-block" alt="about"> | ||
<h4 class="mt-7 md:text-5xl text-sm font-semibold">We are an Immunotherapy Company with a focus on | ||
Immuno-Oncology</h4> | ||
</div> | ||
</section> | ||
|
||
<section class="content-section"> | ||
<div class="container text-left mx-auto pt-20 pb-20"> | ||
<div class="md:mx-28 max-sm:mx-10" data-wow-duration="1s" data-wow-delay="0.3s"> | ||
<p class="text-white wow fadeIn">CaroGen Corporation is an immunotherapy company employing a | ||
virus-like vesicle (VLV) platform technology that was pioneered by Professor John Rose at Yale | ||
University School of Medicine and is exclusively licensed by CaroGen for the development and | ||
commercialization of VLV immunotherapies worldwide.</p> | ||
|
||
<p class="text-white mt-7 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.7s">Our vision is to | ||
create a wave of potentially transformative, first-in-class immunotherapeutics designed to | ||
engage the body's immune system to both recognize and fight off infectious diseases and cancer. | ||
We are leveraging our VLV platform to develop a portfolio of products against diseases of high | ||
unmet need.</p> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="footer-bg md:py-16 py-10 "> | ||
<div class="container mx-auto text-center"> | ||
<div class="footer-logo"> <img src="./images/footer-logo.png" class="mb-16" /></div> | ||
<div class="grid md:grid-cols-3 gap-4 mt-16 "> | ||
<div class="..."> | ||
|
||
<div class="flex justify-between"> | ||
<div> | ||
<ul class="text-left "> | ||
<li><a href="./aboutus.html">About us</a></li> | ||
<li class="mt-5"><a href="./ourteam.html">Management</a></li> | ||
<li class="mt-5"><a href="./news.html">News</a></li> | ||
</ul> | ||
</div> | ||
<div> | ||
<ul class="text-left"> | ||
<li><a href="./avidioplatform.html">Avidio</a></li> | ||
<li class="mt-5"><a href="./carg201.html">CARG-201</a></li> | ||
<li class="mt-5"><a href="./carg2020.html">CARG-2020</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="text-left text-white md:mt-0 mt-8"> | ||
<h5> Address</h5> | ||
<p class="mt-4">Cell & Genome Sciences Building R2802 <br> 400, Farmington Ave,<br> Farmington, CT | ||
06032</p> | ||
<p class="mt-4"><img src="./images/mail_outline.png" class="mr-1 inline-block"> | ||
[email protected]</p> | ||
</div> | ||
<div class="md:mt-0 mt-4"> | ||
<div class="mapouter"> | ||
<div class="gmap_canvas"><iframe | ||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2977.4785077611814!2d-72.80235692318571!3d41.73177067125819!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89e7ade0dda3f221%3A0x1b191871f6a48f2!2sCell%20%26%20Genome%20Sciences%20Building!5e0!3m2!1sen!2sin!4v1692856263413!5m2!1sen!2sin" | ||
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" | ||
referrerpolicy="no-referrer-when-downgrade"></iframe></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="copy-right"> | ||
<p cla>copyright© 2023 Carogen Corporation.</p> | ||
</div> | ||
</footer> | ||
|
||
<script type="module" src="./js/app.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/smooth-scroll.polyfills.min.js"></script> | ||
<script src="./js/lib/swiper-bundle.min.js"></script> | ||
<script src="./js/wow.min.js"></script> | ||
<script src="./js/smooth-scroll/smooth.js"></script> | ||
|
||
<script> | ||
wow = new WOW({ | ||
boxClass: 'wow', // default | ||
animateClass: 'animated', // default | ||
offset: 10, // default | ||
mobile: true, // default | ||
live: true // default | ||
}); | ||
wow.init(); | ||
const header = document.querySelector('header'); | ||
const toggleClass = "is-sticky"; | ||
|
||
window.addEventListener('scroll', () => { | ||
if (window.scrollY > 100) { | ||
header.classList.add(toggleClass); | ||
} else { | ||
header.classList.remove(toggleClass); | ||
} | ||
}); | ||
$(function () { | ||
$(".hamburger-menu").click(function () { | ||
debugger; | ||
$(".sliding-navbar").toggleClass("sliding-navbar--open"); | ||
$(".mask").toggleClass("show"); | ||
$(".hamburger").toggleClass("menu-opened"); | ||
}); | ||
|
||
$(".mask").click(function () { | ||
$(".sliding-navbar").toggleClass("sliding-navbar--open"); | ||
$(".mask").removeClass("show"); | ||
$(".hamburger").toggleClass("menu-opened"); | ||
}); | ||
}); | ||
var btn = $('#button'); | ||
$(window).scroll(function () { | ||
if ($(window).scrollTop() > 300) { | ||
btn.addClass('show'); | ||
} else { | ||
btn.removeClass('show'); | ||
} | ||
}); | ||
const scrollToTopBtn = document.getElementById('button'); | ||
scrollToTopBtn.addEventListener('click', () => { | ||
window.scrollTo({ | ||
top: 0, | ||
behavior: 'smooth' | ||
}); | ||
}); | ||
$(document).ready(function () { | ||
$("#myCheckbox").change(function () { | ||
if ($(this).is(":checked")) { | ||
$(".sliding-navbar").toggleClass("sliding-navbar--open"); | ||
$(".mask").toggleClass("show"); | ||
$(".hamburger").toggleClass("menu-opened"); | ||
} else { | ||
$(".sliding-navbar").toggleClass("sliding-navbar--open"); | ||
$(".mask").removeClass("show"); | ||
$(".hamburger").toggleClass("menu-opened"); | ||
} | ||
}); | ||
}); | ||
|
||
</script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.