import { Developer } from '@/types/engineers';
// === PROFILE DATA ===
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.
`;
// === CONNECT ===
const links = {
};
// === SKILLS MAP ===
const skills: string[] = [
"React","Next.js","TypeScript","Tailwind CSS","Node.js","MongoDB"
];
// === EDUCATION ===
const education: Degree[] = [
{
institution: "University of California, Irvine",
degree: "B.S. in Computer Science",
duration: "2017 - 2021",
}
];
// === EXPERIENCE LOG ===
const experience: Job[] = [
{
company: "Pixel Forge Labs",
role: "Senior Full Stack Developer",
duration: "2023 - Present",
desc:"Leading delivery of client platforms with Next.js, Node.js, and cloud-native APIs.",
},
{
company: "BrightCart",
role: "Frontend Developer",
duration: "2021 - 2023",
desc:"Built conversion-focused storefront experiences and reusable UI components.",
}
];
// === PROJECTS MAP ===
const projects: Project[] = [
{
title: "Folyo SaaS",
desc:"A platform to build portfolios in seconds using Next.js and AI.",
stack: ["Next.js", "Stripe", "Tailwind"],
},
{
title: "E-Commerce Dashboard",
desc:"A complete admin panel for managing products and orders.",
stack: ["React", "Redux", "Chart.js"],
},
{
title: "AI Chatbot",
desc:"An intelligent support bot powered by OpenAI models.",
stack: ["Python", "FastAPI", "OpenAI"],
}
];
export default Portfolio;
// © 2026 Adam Smith. Compiled Successfully.