added MoreSection component to profile page
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
|
||||
export type MoreSection = {
|
||||
title?: string;
|
||||
text: string;
|
||||
}
|
||||
|
||||
export type SocialLink = {
|
||||
label: string;
|
||||
url: string;
|
||||
@@ -5,9 +11,9 @@ export type SocialLink = {
|
||||
};
|
||||
|
||||
export type ContactMethod = {
|
||||
masked: boolean,
|
||||
label: string,
|
||||
icon: string
|
||||
masked: boolean;
|
||||
label: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export type Project = {
|
||||
@@ -28,7 +34,39 @@ export const PROFILE = {
|
||||
name: "Hunter W",
|
||||
title: "Software Engineer",
|
||||
email: "contact@hwilliams.dev",
|
||||
bio: "I build user experiences before I write code. Experience with full-stack development across a variety of frameworks and languages including Vue, React, Next.JS, Nuxt, Node.JS, Express, Flask, FastAPI, Gunicorn, and more.",
|
||||
bio: `I build user experiences before I write code.
|
||||
Experience with full-stack development across a variety of frameworks and languages including Vue,
|
||||
React, Next.JS, Nuxt, Node.JS, Express, Flask, FastAPI, Gunicorn, and more.`,
|
||||
moreSections: [
|
||||
{
|
||||
title:"A little more about me",
|
||||
text: `I graduated with a B.S. in Computer Science from Georgia Southern University in May 2025.
|
||||
I have been working with AWS building analytics and monitoring dashboards with a sprinkle of prompt
|
||||
engineering on major production projects.`
|
||||
},
|
||||
{
|
||||
text: "I make mods for video games such as Space Engineers and Rimworld in my free time."
|
||||
},
|
||||
{
|
||||
title:"My goals",
|
||||
text: `User experience. \n \n Nothing makes me happier than seeing someone excited to use the software I make, and the way that happens is by practicing
|
||||
development techniques that make a good user experience. I especially enjoy peeling back the layers of old systems to explore how an existing
|
||||
user experience can be improved. I love the words 'Wow, it used to be difficult to do this!'.
|
||||
`
|
||||
},
|
||||
{
|
||||
title:"My dreams",
|
||||
text: `Stop me if you've heard this one before: I left college with a burning passion for machine learning and artificial intelligence. It's still there, and despite
|
||||
the trouble going on in the world right now I see a bright future for how these incredibly advanced statistical models can still be applied in new ways.
|
||||
\n
|
||||
`
|
||||
},
|
||||
{
|
||||
title:"Wow, you're still here?",
|
||||
text: `I appreciate you, but I am totally out of things to talk about.`
|
||||
}
|
||||
] satisfies MoreSection[],
|
||||
moreSectionsStart: 1,
|
||||
links: [
|
||||
{ label: "GitHub", url: "https://github.com/FerrenF", icon: "gh" },
|
||||
{ label: "LinkedIn", url: "https://www.linkedin.com/in/hwilliamsf/", icon: "li" }
|
||||
|
||||
Reference in New Issue
Block a user