├── .babelrc ├── .gitignore ├── README.md ├── components ├── Blog.js ├── ClickHeading.js ├── Error404.js ├── EventSection.js ├── ExpandingSection.js ├── Footer.js ├── Head.js ├── Hero.js ├── JWPlayerVideo.js ├── Layout.js ├── MaterialSelect.js ├── Nav.js ├── OutLink.js ├── ResourceCard.js ├── ResourceRow.js ├── Section.js ├── StickyNav.js ├── TeamCard.js ├── TextCard.js ├── TextRevealImageCard.js └── Title.js ├── package.json ├── pages ├── about.js ├── courses.js ├── events.js ├── index.js ├── news.js ├── pdf-page.js ├── resources.js ├── single-event.js ├── single-news.js └── team.js ├── server.js ├── static ├── css │ ├── materialize.css │ └── style.css ├── favicon.ico ├── fonts │ └── roboto │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── img │ ├── adoration.jpg │ ├── ci-logo.png │ ├── degree.jpg │ ├── fah-img.jpg │ ├── fast-track.jpg │ ├── fr-nathan.jpg │ ├── keimig-about.jpg │ ├── logoTxt.png │ ├── monstrance-2000w-op.jpg │ ├── motif1-reverse.png │ ├── motif1.png │ ├── motif2-reverse.png │ ├── motif2.png │ ├── new │ │ ├── about-title.jpg │ │ ├── courses-title.jpg │ │ ├── events-title.jpg │ │ ├── fast-track.jpg │ │ ├── online-degree.jpg │ │ ├── port-dark.jpg │ │ ├── port-fall.jpg │ │ ├── resources-title.jpg │ │ └── team-title.jpg │ ├── news-title.jpg │ ├── online-learning-700w.jpg │ ├── pdp.jpg │ ├── petroc-about.jpg │ ├── resources.jpg │ ├── san-damiano-op.jpg │ ├── san-damiano.gif │ ├── speaking-the-truth-700w-op.jpg │ ├── squiggly1.png │ ├── squiggly2-reverse.png │ ├── squiggly2.png │ ├── squiggly3-reverse.png │ ├── squiggly3.png │ ├── st._john_bosco.jpg │ ├── synaxis.jpg │ └── vertical-fus-logo-white.svg └── js │ └── app.js ├── utils ├── analytics.js └── fetch.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/README.md -------------------------------------------------------------------------------- /components/Blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Blog.js -------------------------------------------------------------------------------- /components/ClickHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/ClickHeading.js -------------------------------------------------------------------------------- /components/Error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Error404.js -------------------------------------------------------------------------------- /components/EventSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/EventSection.js -------------------------------------------------------------------------------- /components/ExpandingSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/ExpandingSection.js -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Head.js -------------------------------------------------------------------------------- /components/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Hero.js -------------------------------------------------------------------------------- /components/JWPlayerVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/JWPlayerVideo.js -------------------------------------------------------------------------------- /components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Layout.js -------------------------------------------------------------------------------- /components/MaterialSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/MaterialSelect.js -------------------------------------------------------------------------------- /components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Nav.js -------------------------------------------------------------------------------- /components/OutLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/OutLink.js -------------------------------------------------------------------------------- /components/ResourceCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/ResourceCard.js -------------------------------------------------------------------------------- /components/ResourceRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/ResourceRow.js -------------------------------------------------------------------------------- /components/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Section.js -------------------------------------------------------------------------------- /components/StickyNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/StickyNav.js -------------------------------------------------------------------------------- /components/TeamCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/TeamCard.js -------------------------------------------------------------------------------- /components/TextCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/TextCard.js -------------------------------------------------------------------------------- /components/TextRevealImageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/TextRevealImageCard.js -------------------------------------------------------------------------------- /components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/components/Title.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/courses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/courses.js -------------------------------------------------------------------------------- /pages/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/events.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/news.js -------------------------------------------------------------------------------- /pages/pdf-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/pdf-page.js -------------------------------------------------------------------------------- /pages/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/resources.js -------------------------------------------------------------------------------- /pages/single-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/single-event.js -------------------------------------------------------------------------------- /pages/single-news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/single-news.js -------------------------------------------------------------------------------- /pages/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/pages/team.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/server.js -------------------------------------------------------------------------------- /static/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/css/materialize.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static/img/adoration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/adoration.jpg -------------------------------------------------------------------------------- /static/img/ci-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/ci-logo.png -------------------------------------------------------------------------------- /static/img/degree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/degree.jpg -------------------------------------------------------------------------------- /static/img/fah-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/fah-img.jpg -------------------------------------------------------------------------------- /static/img/fast-track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/fast-track.jpg -------------------------------------------------------------------------------- /static/img/fr-nathan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/fr-nathan.jpg -------------------------------------------------------------------------------- /static/img/keimig-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/keimig-about.jpg -------------------------------------------------------------------------------- /static/img/logoTxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/logoTxt.png -------------------------------------------------------------------------------- /static/img/monstrance-2000w-op.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/monstrance-2000w-op.jpg -------------------------------------------------------------------------------- /static/img/motif1-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/motif1-reverse.png -------------------------------------------------------------------------------- /static/img/motif1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/motif1.png -------------------------------------------------------------------------------- /static/img/motif2-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/motif2-reverse.png -------------------------------------------------------------------------------- /static/img/motif2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/motif2.png -------------------------------------------------------------------------------- /static/img/new/about-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/about-title.jpg -------------------------------------------------------------------------------- /static/img/new/courses-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/courses-title.jpg -------------------------------------------------------------------------------- /static/img/new/events-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/events-title.jpg -------------------------------------------------------------------------------- /static/img/new/fast-track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/fast-track.jpg -------------------------------------------------------------------------------- /static/img/new/online-degree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/online-degree.jpg -------------------------------------------------------------------------------- /static/img/new/port-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/port-dark.jpg -------------------------------------------------------------------------------- /static/img/new/port-fall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/port-fall.jpg -------------------------------------------------------------------------------- /static/img/new/resources-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/resources-title.jpg -------------------------------------------------------------------------------- /static/img/new/team-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/new/team-title.jpg -------------------------------------------------------------------------------- /static/img/news-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/news-title.jpg -------------------------------------------------------------------------------- /static/img/online-learning-700w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/online-learning-700w.jpg -------------------------------------------------------------------------------- /static/img/pdp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/pdp.jpg -------------------------------------------------------------------------------- /static/img/petroc-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/petroc-about.jpg -------------------------------------------------------------------------------- /static/img/resources.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/resources.jpg -------------------------------------------------------------------------------- /static/img/san-damiano-op.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/san-damiano-op.jpg -------------------------------------------------------------------------------- /static/img/san-damiano.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/san-damiano.gif -------------------------------------------------------------------------------- /static/img/speaking-the-truth-700w-op.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/speaking-the-truth-700w-op.jpg -------------------------------------------------------------------------------- /static/img/squiggly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/squiggly1.png -------------------------------------------------------------------------------- /static/img/squiggly2-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/squiggly2-reverse.png -------------------------------------------------------------------------------- /static/img/squiggly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/squiggly2.png -------------------------------------------------------------------------------- /static/img/squiggly3-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/squiggly3-reverse.png -------------------------------------------------------------------------------- /static/img/squiggly3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/squiggly3.png -------------------------------------------------------------------------------- /static/img/st._john_bosco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/st._john_bosco.jpg -------------------------------------------------------------------------------- /static/img/synaxis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/synaxis.jpg -------------------------------------------------------------------------------- /static/img/vertical-fus-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/img/vertical-fus-logo-white.svg -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/static/js/app.js -------------------------------------------------------------------------------- /utils/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/utils/analytics.js -------------------------------------------------------------------------------- /utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/utils/fetch.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fus-marcom/ci-react/HEAD/yarn.lock --------------------------------------------------------------------------------