Fix/optimizations (#3)

* revamped js/css asset build

* update favicon compilation and color; cleanup package.json

* fix spacing

* update social media display and references

* adjust about page sizing and mobile display

* update jobs and page titles

* abstract links to single source, small style fixes

* adjust footer

* update pro viddeo page and seo

* seo and video fixes

* fix seo display

* move tor link to footer

* sizing adjustments and add hosted video

* video and sizing adjustments

* wip video

* final video

* update pro link

* temp fix for ticker start

* update link, add auto orient, remove video border

* fix contact form submission and mobile submit
This commit is contained in:
Lucy C
2022-11-08 13:31:00 -07:00
committed by GitHub
parent 78b5014be8
commit b495794a03
81 changed files with 3340 additions and 5566 deletions

27
src/assets/js/header.js Normal file
View File

@@ -0,0 +1,27 @@
//////////////////////////////////////////
// HEADER
import { gsap } from "gsap";
gsap.to("header", {
duration: 0.5,
backgroundColor: "rgba(0,0,0,0.1)",
backdropFilter: "blur(10px)",
scrollTrigger: {
trigger: "#hero-image",
scrub: true,
start: "center top", // "triggerElement page"
end: "bottom top", // "triggerElement page"
},
});
gsap.to(".header__logo", {
duration: 0.5,
opacity: "1",
filter: "blur(0px)",
scrollTrigger: {
trigger: "#hero-image",
scrub: true,
start: "center top", // "triggerElement page"
end: "bottom top", // "triggerElement page"
},
});