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:
@ -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";
|
||||
|
||||
|
@ -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";
|
||||
|
||||
|
@ -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 (
|
||||
|
@ -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 (
|
||||
|
@ -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";
|
||||
|
@ -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";
|
||||
|
||||
|
@ -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 }) {
|
||||
|
@ -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";
|
||||
|
||||
|
Reference in New Issue
Block a user