From 9369766f0f9d2bda8e2403450ada7d05a36e2e29 Mon Sep 17 00:00:00 2001 From: Matt Sherman Date: Mon, 9 Dec 2024 12:50:17 -0500 Subject: [PATCH] Move website to apps/website --- README.md | 14 ++------------ apps/website/README.md | 15 +++++++++++++++ _config.ts => apps/website/_config.ts | 0 deno.json => apps/website/deno.json | 0 deno.lock => apps/website/deno.lock | 0 serve.ts => apps/website/serve.ts | 0 .../website/src}/_components/BaseStylesLinks.tsx | 0 .../website/src}/_components/CodePenEmbed.tsx | 0 {src => apps/website/src}/_components/Footer.tsx | 0 .../website/src}/_components/PageNav.tsx | 0 .../src}/_components/icons/AuthorIcon.tsx | 0 .../website/src}/_components/icons/BlogIcon.tsx | 0 .../website/src}/_components/icons/DateIcon.tsx | 0 .../website/src}/_components/icons/EmailIcon.tsx | 0 .../src}/_components/icons/GitHubIcon.tsx | 0 .../website/src}/_components/icons/HomeIcon.tsx | 0 .../src}/_components/icons/LinkedInIcon.tsx | 0 .../src}/_components/icons/LocationIcon.tsx | 0 .../website/src}/_components/icons/PdfIcon.tsx | 0 .../website/src}/_components/icons/PhoneIcon.tsx | 0 .../src}/_components/icons/ResumeIcon.tsx | 0 {src => apps/website/src}/_data.ts | 0 .../src}/_includes/layouts/embed-layout.tsx | 0 .../src}/_includes/layouts/home-page-layout.tsx | 0 .../website/src}/_includes/layouts/layout.tsx | 0 .../src}/_includes/layouts/post-layout.tsx | 0 .../src}/_includes/layouts/resume-layout.tsx | 0 {src => apps/website/src}/base.css | 0 .../src}/blog/_components/PostListItem.tsx | 0 .../src}/blog/_components/PostMetadata.tsx | 0 {src => apps/website/src}/blog/index.tsx | 0 .../blog/posts/2024-10-19_about-this-site.md | 0 ...1-17_privacy-and-the-css-visited-selector.mdx | 0 {src => apps/website/src}/blog/posts/_data.ts | 0 .../website/src}/embed-layout-styles.css | 0 {src => apps/website/src}/fonts.css | 0 {src => apps/website/src}/index.tsx | 0 .../src}/playground/snowfall/embed/index.html | 0 .../src}/playground/snowfall/embed/script.ts | 0 .../src}/playground/snowfall/embed/style.css | 0 .../website/src}/playground/snowfall/index.tsx | 0 {src => apps/website/src}/reset.css | 0 .../_components/EducationEntryComponent.tsx | 0 .../resume/_components/JobPositionComponent.tsx | 0 .../resume/_components/SkillsListComponent.tsx | 0 .../website/src}/resume/_data/resume.json | 0 {src => apps/website/src}/resume/index.tsx | 0 {src => apps/website/src}/resume/styles.css | 0 {src => apps/website/src}/resume/types.ts | 0 {src => apps/website/src}/script.ts | 0 .../ia-writer-quattro/iAWriterQuattroS-Bold.eot | Bin .../ia-writer-quattro/iAWriterQuattroS-Bold.woff | Bin .../iAWriterQuattroS-Bold.woff2 | Bin .../iAWriterQuattroS-BoldItalic.eot | Bin .../iAWriterQuattroS-BoldItalic.woff | Bin .../iAWriterQuattroS-BoldItalic.woff2 | Bin .../iAWriterQuattroS-Italic.eot | Bin .../iAWriterQuattroS-Italic.woff | Bin .../iAWriterQuattroS-Italic.woff2 | Bin .../iAWriterQuattroS-Regular.eot | Bin .../iAWriterQuattroS-Regular.woff | Bin .../iAWriterQuattroS-Regular.woff2 | Bin .../website/src}/static/matt-sherman-resume.pdf | Bin {src => apps/website/src}/styles.css | 0 64 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 apps/website/README.md rename _config.ts => apps/website/_config.ts (100%) rename deno.json => apps/website/deno.json (100%) rename deno.lock => apps/website/deno.lock (100%) rename serve.ts => apps/website/serve.ts (100%) rename {src => apps/website/src}/_components/BaseStylesLinks.tsx (100%) rename {src => apps/website/src}/_components/CodePenEmbed.tsx (100%) rename {src => apps/website/src}/_components/Footer.tsx (100%) rename {src => apps/website/src}/_components/PageNav.tsx (100%) rename {src => apps/website/src}/_components/icons/AuthorIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/BlogIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/DateIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/EmailIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/GitHubIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/HomeIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/LinkedInIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/LocationIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/PdfIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/PhoneIcon.tsx (100%) rename {src => apps/website/src}/_components/icons/ResumeIcon.tsx (100%) rename {src => apps/website/src}/_data.ts (100%) rename {src => apps/website/src}/_includes/layouts/embed-layout.tsx (100%) rename {src => apps/website/src}/_includes/layouts/home-page-layout.tsx (100%) rename {src => apps/website/src}/_includes/layouts/layout.tsx (100%) rename {src => apps/website/src}/_includes/layouts/post-layout.tsx (100%) rename {src => apps/website/src}/_includes/layouts/resume-layout.tsx (100%) rename {src => apps/website/src}/base.css (100%) rename {src => apps/website/src}/blog/_components/PostListItem.tsx (100%) rename {src => apps/website/src}/blog/_components/PostMetadata.tsx (100%) rename {src => apps/website/src}/blog/index.tsx (100%) rename {src => apps/website/src}/blog/posts/2024-10-19_about-this-site.md (100%) rename {src => apps/website/src}/blog/posts/2024-11-17_privacy-and-the-css-visited-selector.mdx (100%) rename {src => apps/website/src}/blog/posts/_data.ts (100%) rename {src => apps/website/src}/embed-layout-styles.css (100%) rename {src => apps/website/src}/fonts.css (100%) rename {src => apps/website/src}/index.tsx (100%) rename {src => apps/website/src}/playground/snowfall/embed/index.html (100%) rename {src => apps/website/src}/playground/snowfall/embed/script.ts (100%) rename {src => apps/website/src}/playground/snowfall/embed/style.css (100%) rename {src => apps/website/src}/playground/snowfall/index.tsx (100%) rename {src => apps/website/src}/reset.css (100%) rename {src => apps/website/src}/resume/_components/EducationEntryComponent.tsx (100%) rename {src => apps/website/src}/resume/_components/JobPositionComponent.tsx (100%) rename {src => apps/website/src}/resume/_components/SkillsListComponent.tsx (100%) rename {src => apps/website/src}/resume/_data/resume.json (100%) rename {src => apps/website/src}/resume/index.tsx (100%) rename {src => apps/website/src}/resume/styles.css (100%) rename {src => apps/website/src}/resume/types.ts (100%) rename {src => apps/website/src}/script.ts (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.eot (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff2 (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.eot (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff2 (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.eot (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff2 (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.eot (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff (100%) rename {src => apps/website/src}/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff2 (100%) rename {src => apps/website/src}/static/matt-sherman-resume.pdf (100%) rename {src => apps/website/src}/styles.css (100%) diff --git a/README.md b/README.md index 23fc526..0a2a635 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,5 @@ # mg5dev -This is the repository for https://mg5.dev, Matt Sherman's development web site. +This is the monorepo for: -## Development - -This site is developed using [Lume](https://lume.land), a static site generator for [Deno](https://deno.com). - -## Icons used - -The icons used are from [Remix Icon](https://remixicon.com), a set of open-source system icons for designers and developers. You can find the icons on GitHub at [Remix-Design/RemixIcon](https://github.com/Remix-Design/RemixIcon). - -## Fonts used - -The fonts used are from [iA](https://github.com/iaolo/iA-Fonts), developer of the excellent [iA Writer](https://ia.net/writer) Markdown writing app for Mac, iOS, and Android. You can find the fonts on GitHub at [iaolo/iA-Fonts](https://github.com/iaolo/iA-Fonts). +- https://mg5.dev, Matt Sherman's development web site \ No newline at end of file diff --git a/apps/website/README.md b/apps/website/README.md new file mode 100644 index 0000000..25af0e3 --- /dev/null +++ b/apps/website/README.md @@ -0,0 +1,15 @@ +# mg5dev/apps/website + +This is the repository for https://mg5.dev, Matt Sherman's development web site. + +## Development + +This site is developed using [Lume](https://lume.land), a static site generator for [Deno](https://deno.com). + +## Icons used + +The icons used are from [Remix Icon](https://remixicon.com), a set of open-source system icons for designers and developers. You can find the icons on GitHub at [Remix-Design/RemixIcon](https://github.com/Remix-Design/RemixIcon). + +## Fonts used + +The fonts used are from [iA](https://github.com/iaolo/iA-Fonts), developer of the excellent [iA Writer](https://ia.net/writer) Markdown writing app for Mac, iOS, and Android. You can find the fonts on GitHub at [iaolo/iA-Fonts](https://github.com/iaolo/iA-Fonts). diff --git a/_config.ts b/apps/website/_config.ts similarity index 100% rename from _config.ts rename to apps/website/_config.ts diff --git a/deno.json b/apps/website/deno.json similarity index 100% rename from deno.json rename to apps/website/deno.json diff --git a/deno.lock b/apps/website/deno.lock similarity index 100% rename from deno.lock rename to apps/website/deno.lock diff --git a/serve.ts b/apps/website/serve.ts similarity index 100% rename from serve.ts rename to apps/website/serve.ts diff --git a/src/_components/BaseStylesLinks.tsx b/apps/website/src/_components/BaseStylesLinks.tsx similarity index 100% rename from src/_components/BaseStylesLinks.tsx rename to apps/website/src/_components/BaseStylesLinks.tsx diff --git a/src/_components/CodePenEmbed.tsx b/apps/website/src/_components/CodePenEmbed.tsx similarity index 100% rename from src/_components/CodePenEmbed.tsx rename to apps/website/src/_components/CodePenEmbed.tsx diff --git a/src/_components/Footer.tsx b/apps/website/src/_components/Footer.tsx similarity index 100% rename from src/_components/Footer.tsx rename to apps/website/src/_components/Footer.tsx diff --git a/src/_components/PageNav.tsx b/apps/website/src/_components/PageNav.tsx similarity index 100% rename from src/_components/PageNav.tsx rename to apps/website/src/_components/PageNav.tsx diff --git a/src/_components/icons/AuthorIcon.tsx b/apps/website/src/_components/icons/AuthorIcon.tsx similarity index 100% rename from src/_components/icons/AuthorIcon.tsx rename to apps/website/src/_components/icons/AuthorIcon.tsx diff --git a/src/_components/icons/BlogIcon.tsx b/apps/website/src/_components/icons/BlogIcon.tsx similarity index 100% rename from src/_components/icons/BlogIcon.tsx rename to apps/website/src/_components/icons/BlogIcon.tsx diff --git a/src/_components/icons/DateIcon.tsx b/apps/website/src/_components/icons/DateIcon.tsx similarity index 100% rename from src/_components/icons/DateIcon.tsx rename to apps/website/src/_components/icons/DateIcon.tsx diff --git a/src/_components/icons/EmailIcon.tsx b/apps/website/src/_components/icons/EmailIcon.tsx similarity index 100% rename from src/_components/icons/EmailIcon.tsx rename to apps/website/src/_components/icons/EmailIcon.tsx diff --git a/src/_components/icons/GitHubIcon.tsx b/apps/website/src/_components/icons/GitHubIcon.tsx similarity index 100% rename from src/_components/icons/GitHubIcon.tsx rename to apps/website/src/_components/icons/GitHubIcon.tsx diff --git a/src/_components/icons/HomeIcon.tsx b/apps/website/src/_components/icons/HomeIcon.tsx similarity index 100% rename from src/_components/icons/HomeIcon.tsx rename to apps/website/src/_components/icons/HomeIcon.tsx diff --git a/src/_components/icons/LinkedInIcon.tsx b/apps/website/src/_components/icons/LinkedInIcon.tsx similarity index 100% rename from src/_components/icons/LinkedInIcon.tsx rename to apps/website/src/_components/icons/LinkedInIcon.tsx diff --git a/src/_components/icons/LocationIcon.tsx b/apps/website/src/_components/icons/LocationIcon.tsx similarity index 100% rename from src/_components/icons/LocationIcon.tsx rename to apps/website/src/_components/icons/LocationIcon.tsx diff --git a/src/_components/icons/PdfIcon.tsx b/apps/website/src/_components/icons/PdfIcon.tsx similarity index 100% rename from src/_components/icons/PdfIcon.tsx rename to apps/website/src/_components/icons/PdfIcon.tsx diff --git a/src/_components/icons/PhoneIcon.tsx b/apps/website/src/_components/icons/PhoneIcon.tsx similarity index 100% rename from src/_components/icons/PhoneIcon.tsx rename to apps/website/src/_components/icons/PhoneIcon.tsx diff --git a/src/_components/icons/ResumeIcon.tsx b/apps/website/src/_components/icons/ResumeIcon.tsx similarity index 100% rename from src/_components/icons/ResumeIcon.tsx rename to apps/website/src/_components/icons/ResumeIcon.tsx diff --git a/src/_data.ts b/apps/website/src/_data.ts similarity index 100% rename from src/_data.ts rename to apps/website/src/_data.ts diff --git a/src/_includes/layouts/embed-layout.tsx b/apps/website/src/_includes/layouts/embed-layout.tsx similarity index 100% rename from src/_includes/layouts/embed-layout.tsx rename to apps/website/src/_includes/layouts/embed-layout.tsx diff --git a/src/_includes/layouts/home-page-layout.tsx b/apps/website/src/_includes/layouts/home-page-layout.tsx similarity index 100% rename from src/_includes/layouts/home-page-layout.tsx rename to apps/website/src/_includes/layouts/home-page-layout.tsx diff --git a/src/_includes/layouts/layout.tsx b/apps/website/src/_includes/layouts/layout.tsx similarity index 100% rename from src/_includes/layouts/layout.tsx rename to apps/website/src/_includes/layouts/layout.tsx diff --git a/src/_includes/layouts/post-layout.tsx b/apps/website/src/_includes/layouts/post-layout.tsx similarity index 100% rename from src/_includes/layouts/post-layout.tsx rename to apps/website/src/_includes/layouts/post-layout.tsx diff --git a/src/_includes/layouts/resume-layout.tsx b/apps/website/src/_includes/layouts/resume-layout.tsx similarity index 100% rename from src/_includes/layouts/resume-layout.tsx rename to apps/website/src/_includes/layouts/resume-layout.tsx diff --git a/src/base.css b/apps/website/src/base.css similarity index 100% rename from src/base.css rename to apps/website/src/base.css diff --git a/src/blog/_components/PostListItem.tsx b/apps/website/src/blog/_components/PostListItem.tsx similarity index 100% rename from src/blog/_components/PostListItem.tsx rename to apps/website/src/blog/_components/PostListItem.tsx diff --git a/src/blog/_components/PostMetadata.tsx b/apps/website/src/blog/_components/PostMetadata.tsx similarity index 100% rename from src/blog/_components/PostMetadata.tsx rename to apps/website/src/blog/_components/PostMetadata.tsx diff --git a/src/blog/index.tsx b/apps/website/src/blog/index.tsx similarity index 100% rename from src/blog/index.tsx rename to apps/website/src/blog/index.tsx diff --git a/src/blog/posts/2024-10-19_about-this-site.md b/apps/website/src/blog/posts/2024-10-19_about-this-site.md similarity index 100% rename from src/blog/posts/2024-10-19_about-this-site.md rename to apps/website/src/blog/posts/2024-10-19_about-this-site.md diff --git a/src/blog/posts/2024-11-17_privacy-and-the-css-visited-selector.mdx b/apps/website/src/blog/posts/2024-11-17_privacy-and-the-css-visited-selector.mdx similarity index 100% rename from src/blog/posts/2024-11-17_privacy-and-the-css-visited-selector.mdx rename to apps/website/src/blog/posts/2024-11-17_privacy-and-the-css-visited-selector.mdx diff --git a/src/blog/posts/_data.ts b/apps/website/src/blog/posts/_data.ts similarity index 100% rename from src/blog/posts/_data.ts rename to apps/website/src/blog/posts/_data.ts diff --git a/src/embed-layout-styles.css b/apps/website/src/embed-layout-styles.css similarity index 100% rename from src/embed-layout-styles.css rename to apps/website/src/embed-layout-styles.css diff --git a/src/fonts.css b/apps/website/src/fonts.css similarity index 100% rename from src/fonts.css rename to apps/website/src/fonts.css diff --git a/src/index.tsx b/apps/website/src/index.tsx similarity index 100% rename from src/index.tsx rename to apps/website/src/index.tsx diff --git a/src/playground/snowfall/embed/index.html b/apps/website/src/playground/snowfall/embed/index.html similarity index 100% rename from src/playground/snowfall/embed/index.html rename to apps/website/src/playground/snowfall/embed/index.html diff --git a/src/playground/snowfall/embed/script.ts b/apps/website/src/playground/snowfall/embed/script.ts similarity index 100% rename from src/playground/snowfall/embed/script.ts rename to apps/website/src/playground/snowfall/embed/script.ts diff --git a/src/playground/snowfall/embed/style.css b/apps/website/src/playground/snowfall/embed/style.css similarity index 100% rename from src/playground/snowfall/embed/style.css rename to apps/website/src/playground/snowfall/embed/style.css diff --git a/src/playground/snowfall/index.tsx b/apps/website/src/playground/snowfall/index.tsx similarity index 100% rename from src/playground/snowfall/index.tsx rename to apps/website/src/playground/snowfall/index.tsx diff --git a/src/reset.css b/apps/website/src/reset.css similarity index 100% rename from src/reset.css rename to apps/website/src/reset.css diff --git a/src/resume/_components/EducationEntryComponent.tsx b/apps/website/src/resume/_components/EducationEntryComponent.tsx similarity index 100% rename from src/resume/_components/EducationEntryComponent.tsx rename to apps/website/src/resume/_components/EducationEntryComponent.tsx diff --git a/src/resume/_components/JobPositionComponent.tsx b/apps/website/src/resume/_components/JobPositionComponent.tsx similarity index 100% rename from src/resume/_components/JobPositionComponent.tsx rename to apps/website/src/resume/_components/JobPositionComponent.tsx diff --git a/src/resume/_components/SkillsListComponent.tsx b/apps/website/src/resume/_components/SkillsListComponent.tsx similarity index 100% rename from src/resume/_components/SkillsListComponent.tsx rename to apps/website/src/resume/_components/SkillsListComponent.tsx diff --git a/src/resume/_data/resume.json b/apps/website/src/resume/_data/resume.json similarity index 100% rename from src/resume/_data/resume.json rename to apps/website/src/resume/_data/resume.json diff --git a/src/resume/index.tsx b/apps/website/src/resume/index.tsx similarity index 100% rename from src/resume/index.tsx rename to apps/website/src/resume/index.tsx diff --git a/src/resume/styles.css b/apps/website/src/resume/styles.css similarity index 100% rename from src/resume/styles.css rename to apps/website/src/resume/styles.css diff --git a/src/resume/types.ts b/apps/website/src/resume/types.ts similarity index 100% rename from src/resume/types.ts rename to apps/website/src/resume/types.ts diff --git a/src/script.ts b/apps/website/src/script.ts similarity index 100% rename from src/script.ts rename to apps/website/src/script.ts diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.eot b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.eot similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.eot rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.eot diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff2 b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff2 similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff2 rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Bold.woff2 diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.eot b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.eot similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.eot rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.eot diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff2 b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff2 similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff2 rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-BoldItalic.woff2 diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.eot b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.eot similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.eot rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.eot diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff2 b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff2 similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff2 rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Italic.woff2 diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.eot b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.eot similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.eot rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.eot diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff diff --git a/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff2 b/apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff2 similarity index 100% rename from src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff2 rename to apps/website/src/static/fonts/ia-writer-quattro/iAWriterQuattroS-Regular.woff2 diff --git a/src/static/matt-sherman-resume.pdf b/apps/website/src/static/matt-sherman-resume.pdf similarity index 100% rename from src/static/matt-sherman-resume.pdf rename to apps/website/src/static/matt-sherman-resume.pdf diff --git a/src/styles.css b/apps/website/src/styles.css similarity index 100% rename from src/styles.css rename to apps/website/src/styles.css