diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index b9504e9..600562e 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,66 +1,541 @@ -
-

- ❯ Hello, I'm {name} -

-

- └─ a {role} building full-stack apps, server infra, and cool terminal UIs. -

+
+ +
+
+
+
+
+
+
+
+

josh@portfolio:~$

+
+ + + +
+
-
-

Projects

-
    - {#each projects as { name, link, description }} -
  • - - ❯ {name} - -

    └─ {description}

    -
  • - {/each} -
+ +
+
+
+ +
+ {#each terminalHistory as entry} +
+
+ josh@portfolio:~$ + {entry.command} +
+
{entry.output}
+
+ {/each} +
+ josh@portfolio:~$ + +
+
+
+
-
-

Contact

-

- ❯ Email: josh@example.com
- ❯ GitHub: @yourhandle -

-
+ +
+ +
+
+
+ {profile.name} +
+
+

+ ❯ {profile.name} +

+

{profile.role}

+

{profile.bio}

+
+ + +
+
+
+
+ + +
+

❯ Projects

+ +
+ {#each projects as project, index} +
+
+
+ {project.name} +
+
+

+ {project.name} +

+

{project.description}

+ +
+

Tech Stack:

+
+ {#each project.techStack as tech} + {tech} + {/each} +
+
+ +
+

Key Features:

+
    + {#each project.highlights as highlight} +
  • {highlight}
  • + {/each} +
+
+
+
+
+ {/each} +
+
+ + +
+

❯ Education

+ +
+
+
+

{education.university}

+

{education.degree}

+
+
+

{education.graduation}

+

GPA: {education.gpa}

+
+
+ +
+

Relevant Coursework

+
+ {#each education.courses as course} +
+
+ {course.code} + {course.grade} +
+

{course.name}

+
+ {/each} +
+
+
+
+ + +
+

❯ Achievements

+ +
+ {#each achievements as achievement} +
+

{achievement.title}

+

{achievement.date}

+

{achievement.description}

+
+ {/each} +
+
+ + +
+

❯ Skills

+ +
+
+

Programming Languages

+
+ {#each skills.languages as skill} + {skill} + {/each} +
+
+ +
+

Frontend Development

+
+ {#each skills.frontend as skill} + {skill} + {/each} +
+
+ +
+

Backend Development

+
+ {#each skills.backend as skill} + {skill} + {/each} +
+
+ +
+

DevOps & Infrastructure

+
+ {#each skills.devops as skill} + {skill} + {/each} +
+
+ +
+

Databases

+
+ {#each skills.databases as skill} + {skill} + {/each} +
+
+
+
+ + +
+

❯ Contact

+ +
+
+
+

Get In Touch

+
+

+ + Email: + josh@example.com +

+

+ + GitHub: + @yourhandle +

+

+ + LinkedIn: + josh-yourhandle +

+

+ + Twitter: + @josh_dev +

+
+
+ +
+

Send a Message

+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+
+
+ + +
+
+

Built with 💚 using SvelteKit and Tailwind CSS

+

© {new Date().getFullYear()} Josh - All Rights Reserved

+
+
-