1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 14:46:37 -04:00

icons weren't being tree-shaken

This commit is contained in:
2022-01-01 09:31:42 -05:00
parent e8bbcb1eb1
commit b5d039b9d6
14 changed files with 25 additions and 14 deletions

View File

@ -3,7 +3,7 @@ import Container from "../components/Container";
import Content from "../components/Content";
import PageTitle from "../components/page/PageTitle";
import Video from "../components/video/FullPageVideo";
import { TapeIcon } from "../components/icons";
import TapeIcon from "../components/icons/svg/tape.svg";
import thumbnail from "../public/static/images/birthday/thumb.png";

View File

@ -3,7 +3,7 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import Content from "../components/Content";
import PageTitle from "../components/page/PageTitle";
import { BotIcon } from "../components/icons";
import BotIcon from "../components/icons/svg/tape.svg";
import cliImg from "../public/static/images/cli/screenshot.png";

View File

@ -2,7 +2,8 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import PageTitle from "../components/page/PageTitle";
import ContactForm from "../components/contact/ContactForm";
import { MailIcon, LockIcon } from "../components/icons";
import MailIcon from "../components/icons/svg/mail.svg";
import LockIcon from "../components/icons/svg/lock.svg";
export default function Contact() {
return (

View File

@ -2,7 +2,7 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import Content from "../components/Content";
import PageTitle from "../components/page/PageTitle";
import { LicenseIcon } from "../components/icons";
import LicenseIcon from "../components/icons/svg/license.svg";
export default function License() {
return (

View File

@ -5,7 +5,8 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import Content from "../components/Content";
import PageTitle from "../components/page/PageTitle";
import { FloppyIcon, SirenIcon } from "../components/icons";
import FloppyIcon from "../components/icons/svg/floppy.svg";
import SirenIcon from "../components/icons/svg/siren.svg";
import img_wayback from "../public/static/images/previously/wayback.png";
import img_2002_02 from "../public/static/images/previously/2002_02.png";

View File

@ -4,7 +4,7 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import Content from "../components/Content";
import PageTitle from "../components/page/PageTitle";
import { PrivacyIcon } from "../components/icons";
import PrivacyIcon from "../components/icons/svg/privacy.svg";
import faunaImg from "../public/static/images/privacy/fauna_hits.png";

View File

@ -3,7 +3,7 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import PageTitle from "../components/page/PageTitle";
import RepoCard from "../components/projects/RepoCard";
import { ProjectsIcon } from "../components/icons";
import ProjectsIcon from "../components/icons/svg/projects.svg";
import type { GetStaticProps } from "next";
export default function Projects({ repos }) {

View File

@ -4,7 +4,7 @@ import Layout from "../components/Layout";
import Container from "../components/Container";
import Content from "../components/Content";
import PageTitle from "../components/page/PageTitle";
import { LaptopIcon } from "../components/icons";
import LaptopIcon from "../components/icons/svg/laptop.svg";
import desktopImg from "../public/static/images/uses/bigsur.png";