mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-09-13 23:55:35 -04:00
component reorganization
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import Video from "../components/media/Video";
|
||||
import { TapeIcon } from "../components/icons";
|
||||
|
||||
@@ -16,9 +16,9 @@ const Birthday = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<TapeIcon /> 1996.MOV
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<Video
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import Image from "next/image";
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import { BotIcon } from "../components/icons";
|
||||
|
||||
import cliImg from "../public/static/images/cli/screenshot.png";
|
||||
@@ -16,9 +16,9 @@ const CLI = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<BotIcon /> CLI
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<blockquote>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { NextSeo } from "next-seo";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import ContactForm from "../components/contact/ContactForm";
|
||||
import { MailIcon, LockIcon } from "../components/icons";
|
||||
import Content from "../components/Content";
|
||||
@@ -13,9 +13,9 @@ const Contact = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<MailIcon /> Contact Me
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<div className="wrapper">
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import Video from "../components/media/Video";
|
||||
|
||||
import thumbnail from "../public/static/images/hillary/thumb.png";
|
||||
@@ -15,7 +15,7 @@ const Hillary = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>My Brief Apperance in Hillary Clinton's DNC Video</PageTitle>
|
||||
<Title>My Brief Apperance in Hillary Clinton's DNC Video</Title>
|
||||
<Content>
|
||||
<Video
|
||||
url={[
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import Video from "../components/media/Video";
|
||||
|
||||
import thumbnail from "../public/static/images/leo/thumb.png";
|
||||
@@ -15,7 +15,7 @@ const Leo = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>Facebook App on "The Lab with Leo Laporte"</PageTitle>
|
||||
<Title>Facebook App on "The Lab with Leo Laporte"</Title>
|
||||
|
||||
<Content>
|
||||
<Video
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import { LicenseIcon } from "../components/icons";
|
||||
|
||||
const License = () => (
|
||||
@@ -12,9 +12,9 @@ const License = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<LicenseIcon /> License
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<p>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import Image from "next/image";
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import { FloppyIcon, SirenIcon } from "../components/icons";
|
||||
|
||||
/* eslint-disable camelcase */
|
||||
@@ -32,9 +32,9 @@ const Previously = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<FloppyIcon /> Previously on...
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<figure>
|
||||
|
@@ -2,7 +2,7 @@ import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import { PrivacyIcon } from "../components/icons";
|
||||
|
||||
import faunaImg from "../public/static/images/privacy/fauna_hits.png";
|
||||
@@ -16,9 +16,9 @@ const Privacy = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<PrivacyIcon /> Privacy
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<p>Okay, this is an easy one. 😉</p>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
import { graphql } from "@octokit/graphql";
|
||||
import { NextSeo } from "next-seo";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import RepoCard from "../components/projects/RepoCard";
|
||||
import { ProjectsIcon } from "../components/icons";
|
||||
import type { GetStaticProps } from "next";
|
||||
@@ -15,9 +15,9 @@ const Projects = (props: { repos: RepoType[] }) => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
<ProjectsIcon /> Projects
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<div className="wrapper">
|
||||
{props.repos.map((repo: RepoType) => (
|
||||
|
@@ -2,7 +2,7 @@ import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import { NextSeo } from "next-seo";
|
||||
import Content from "../components/Content";
|
||||
import PageTitle from "../components/page/PageTitle";
|
||||
import Title from "../components/title/Title";
|
||||
import { LaptopIcon } from "../components/icons";
|
||||
|
||||
import desktopImg from "../public/static/images/uses/bigsur.png";
|
||||
@@ -17,9 +17,9 @@ const Uses = () => (
|
||||
}}
|
||||
/>
|
||||
|
||||
<PageTitle>
|
||||
<Title>
|
||||
/uses <LaptopIcon />
|
||||
</PageTitle>
|
||||
</Title>
|
||||
|
||||
<Content>
|
||||
<p>
|
||||
|
Reference in New Issue
Block a user