01
import { Identity, Workspace, Expertise, Journey, Mission } from "@portfolio/core";
03
// Initialize developer identity
04
const developer = Identity({
05
name: "Ahmed Yassine Abbane",
06
alias: "Jack of All Trades",
07
role: ["Full Stack Developer", "Graphic Designer"],
08
location: "Tebessa, Algeria",
12
// Configure the current workspace
13
const workspace = Workspace({
14
name: "Portfolio Workspace",
16
architecture: "Component Driven",
17
stack: ["React", "TypeScript", "NestJS", "MongoDB", "PostgreSQL", "Figma"]
20
const expertise = Expertise({
21
development: ["Frontend", "Backend", "APIs", "Databases"],
22
design: ["UI/UX", "Brand Identity", "Graphic Design"],
23
mindset: ["Problem Solving", "Scalable Architecture", "Continuous Learning"]
26
const journey = Journey({
28
milestones: ["Frontend Development", "Graphic Design", "Full Stack Engineering", "Startup Founder"]
31
// Current mission and long-term vision
32
const mission = Mission({
33
current: "CONSULTIFY",
34
objective: "Making expert knowledge universally accessible.",
35
nextGoal: "Build products that create real impact."
38
export default developer
39
.initialize(workspace)