diff --git a/src/pages/portfolio.astro b/src/pages/portfolio.astro new file mode 100644 index 0000000..dc3b9db --- /dev/null +++ b/src/pages/portfolio.astro @@ -0,0 +1,217 @@ +--- +import Layout from '../layouts/Layout.astro'; +import '../styles/global.css'; +import { translations, type Language } from '../i18n/ui'; + +const lang: Language = 'en'; +const t = translations[lang]; + +const projects = [ + { + id: 1, + title: 'Luminary App', + description: 'A fintech dashboard redesign for high-net-worth individuals.', + url: 'luminary-project.co', + image: 'https://lh3.googleusercontent.com/aida-public/AB6AXuDuiRGNBP07ZrmaH7F-Q5XCG8XcmSnVisQQn-Tq4zMmt4oxFQYhnVmEZ16pqAEXpXmPJ29Xc42MlLHJHMla4Q1dMWqm2apfbWMmKQW4gH3fD35Piy_YM1xG2DEHO_es1DqVWQ1GzgmjaRrLehiCzLynVjvtlIg7p5NL8kDBwKBkPqk_nYfYK7jv1lDBrVN4AZ1Hz_j_sRfkerkDWmP2oaTSQh0gN2DLNyN-r34Nda4Dp3GWFWRjZSlivobGKj0mj0eg7QK_Fqcp5GU', + }, + { + id: 2, + title: 'Ether OS', + description: 'A minimalist operating system concept based on spatial UI.', + url: 'ether-spatial.io', + image: 'https://lh3.googleusercontent.com/aida-public/AB6AXuDvWd-Z_6rj37HlgWlrmx1VJHroq2bg6Pv0atKO0GnAF5_74-yfWaASnLWaWh5J6NiThTvt1W3avgzNI3bOpEG0GoVeYjwZxqMwZZRIiaaODFunpArG-H2otP37dkbfuWzOP_QoEWn6INmZ8YFm50k3YDvoCyZNrnv1dETjWlyg2cok9MP4IIqJLDVxp5Yi32R9BUDgxGlVWLUceUR71hTQRKQqKI9jsQPH7E0Y1OLKeCOZ1Wo-RKabzipc2Vtvmo6RtGvT2X0VoSE', + }, +]; + +const skills = [ + { name: 'Visual Design', level: 95, category: 'Expert' }, + { name: 'Prototyping', level: 88, category: 'Advanced' }, + { name: 'Interaction Design', level: 82, category: 'Advanced' }, +]; + +const experience = [ + { + period: '2022 - Present', + title: 'Senior UX Designer', + company: 'Studio Vanta • Remote', + description: 'Leading the design language for next-gen SaaS products and immersive web experiences.', + isActive: true, + }, + { + period: '2020 - 2022', + title: 'Product Designer', + company: 'Flow Digital • Madrid', + description: 'Conceptualized and launched 4 mobile applications with over 1M combined downloads.', + isActive: false, + }, +]; +--- + + + + + + +
+
+
+ +
+
+
+
+ +
+

Vanguard Designer

+

Crafting Digital Excellence

+
+ UI/UX + Motion + Strategy +
+
+
+
+ + +
+
+
+ person +

About Me

+
+

+ A sophisticated designer specializing in high-end digital experiences with a focus on dark aesthetics, glassmorphism, and modern typography. Transforming complex problems into elegant, intuitive interfaces. +

+
+ + +
+
+
+ + +
+

Core Expertise

+
+
+
+ Visual Design + Expert +
+
+
+
+
+
+
+ Prototyping + Advanced +
+
+
+
+
+
+
+ Interaction Design + Advanced +
+
+
+
+
+
+
+ + +
+
+

Latest Work

+ View All +
+
+ {projects.map((project) => ( +
+
+
+

{project.title}

+

{project.description}

+
+ link + {project.url} +
+
+
+ ))} +
+
+ + +
+

Experience

+
+ {experience.map((job) => ( +
+
+
+
+ {job.period} +

{job.title}

+

{job.company}

+

{job.description}

+
+ ))} +
+
+ + +
+ +
+ +