import { Developer } from 'world/engineers';
// === PROFILE ===
export const profile: Developer = {
name: "Adam Smith",
role: "Full Stack Developer",
location: "San Francisco, CA",
}
// === BIO ===
const bio = @`
I build pixel-perfect, engaging, and accessible digital experiences.
`;
// === SKILLS ===
const skills: string[] = [
“React”, “Next.js”, “TypeScript”, “Tailwind CSS”, “Node.js”, “MongoDB”
];
// === CONNECT ===
const links = {
}
// === EXPERIENCE ===
const experience: Job[] = [
{
company: “Pixel Forge Labs”,
role: “Senior Full Stack Developer”,
duration: “2023 - Present”,
description: “Leading delivery of client platforms with Next.js, Node.js, and cloud-native APIs.”,
},
{
company: “BrightCart”,
role: “Frontend Developer”,
duration: “2021 - 2023”,
description: “Built conversion-focused storefront experiences and reusable UI components.”,
}
];
// === PROJECTS ===
const projects: Project[] = [
{
title: “Folyo SaaS”,
stack: [“Next.js”, “Stripe”, “Tailwind”],
},
{
title: “E-Commerce Dashboard”,
stack: [“React”, “Redux”, “Chart.js”],
},
{
title: “AI Chatbot”,
stack: [“Python”, “FastAPI”, “OpenAI”],
}
];
export default Portfolio;