diff --git a/components/UsefulLinks/UsefulLink.js b/components/UsefulLinks/UsefulLink.js index dbfad4f..c34dbba 100644 --- a/components/UsefulLinks/UsefulLink.js +++ b/components/UsefulLinks/UsefulLink.js @@ -1,4 +1,4 @@ -import ExternalLinkIcon from "../ExternalLinkIcon.js"; +import ExternalLinkIcon from "../portfolio/ExternalLinkIcon.js"; export function UsefulLink({ title, link }) { return ( diff --git a/components/UsefulLinks/UsefulLinks.js b/components/UsefulLinks/UsefulLinks.js index c611270..62e45a2 100644 --- a/components/UsefulLinks/UsefulLinks.js +++ b/components/UsefulLinks/UsefulLinks.js @@ -1,4 +1,4 @@ -import ListItem from "../ListItem" +import ListItem from "../portfolio/ListItem" import { UsefulLink } from "./UsefulLink" export function UsefulLinksList() { diff --git a/components/AlienHeader.tsx b/components/portfolio/AlienHeader.tsx similarity index 100% rename from components/AlienHeader.tsx rename to components/portfolio/AlienHeader.tsx diff --git a/components/ExternalLinkIcon.js b/components/portfolio/ExternalLinkIcon.js similarity index 100% rename from components/ExternalLinkIcon.js rename to components/portfolio/ExternalLinkIcon.js diff --git a/components/Job.tsx b/components/portfolio/Job.tsx similarity index 100% rename from components/Job.tsx rename to components/portfolio/Job.tsx diff --git a/components/ListItem.tsx b/components/portfolio/ListItem.tsx similarity index 100% rename from components/ListItem.tsx rename to components/portfolio/ListItem.tsx diff --git a/components/Skill.tsx b/components/portfolio/Skill.tsx similarity index 100% rename from components/Skill.tsx rename to components/portfolio/Skill.tsx diff --git a/components/alien_styles.css b/components/portfolio/alien_styles.css similarity index 100% rename from components/alien_styles.css rename to components/portfolio/alien_styles.css diff --git a/pages/_app.tsx b/pages/_app.tsx index 701854e..bccde0e 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,6 +1,6 @@ import '../styles/global.css' import '../styles/prism.css' -import '../components/alien_styles.css' +import '../components/portfolio/alien_styles.css' import type { AppProps } from 'next/app' import type { HomeProps } from './notes' import React from 'react' diff --git a/pages/index.tsx b/pages/index.tsx index 5591cf1..976901f 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,10 +1,11 @@ -import Job, { type JobProps } from '../components/Job' -import Skill, { type SkillProps } from '../components/Skill' -import ListItem, { type ListItemProps } from '../components/ListItem' +import Job, { type JobProps } from '../components/portfolio/Job' +import Skill, { type SkillProps } from '../components/portfolio/Skill' +import ListItem, { type ListItemProps } from '../components/portfolio/ListItem' import { UsefulLinksList } from '../components/UsefulLinks/index' import { SocialLinksList } from '../components/SocialLinks/SocialLinks' import type { GetStaticProps } from 'next' -import AlienHeader from 'components/AlienHeader' +import AlienHeader from 'components/portfolio/AlienHeader' +import Head from 'next/head' interface LandingProps { jobs: JobsType[] @@ -14,80 +15,85 @@ interface LandingProps { export default function Landing({ jobs, skills, projects }: LandingProps): React.JSX.Element { return ( -
-
-

โ—๐Ÿ‘ท This site is under construction ๐Ÿšง ๐Ÿ—๏ธ ๐Ÿšง

-
+ <> + + Triston Armstrong + +
+
+

โ—๐Ÿ‘ท This site is under construction ๐Ÿšง ๐Ÿ—๏ธ ๐Ÿšง

+
-
+
-
-
+
+
- -

Triston Armstrong ๐Ÿซฐ

-
- -

- Full Stack Software Developer {' '} - - @VentraHealth - -

- -

- I am a self taught Full Stack Software Developer with an unhealthy addiction to solving - problems using code. -

- -
-
- -
-
-

๐Ÿคน Skills

-
- {skills.map(skill => )} + +

Triston Armstrong ๐Ÿซฐ

-
-
-

๐Ÿ’ผ Jobs

-
- {jobs.map(job => )} -
-
+

+ Full Stack Software Developer {' '} + + @VentraHealth + +

-
-

๐Ÿšง Projects

-
- {projects.map(project => )} -
-
-
+

+ I am a self taught Full Stack Software Developer with an unhealthy addiction to solving + problems using code. +

-
-
- -
+
+
+

๐Ÿคน Skills (Click me to fast track to docs)

+
+ {skills.map(skill => )} +
+
-
+
+

๐Ÿ’ผ Jobs

+
+ {jobs.map(job => )} +
+
-
+
+

๐Ÿšง Projects

+
+ {projects.map(project => )} +
+
+
+ +
- -
+
+ +
+ +
+ +
+
+ +
+ ยฉ2023-2024 Triston Armstrong. All rights reserved. +
+ + +
+ ) } diff --git a/pages/playground/index.tsx b/pages/playground/index.tsx index 3a266da..c50c8c5 100644 --- a/pages/playground/index.tsx +++ b/pages/playground/index.tsx @@ -7,31 +7,8 @@ export default function Home() { ๐Ÿ› Playground -
- - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
+

Playground

+
I may play with some ideas here
) }