-
-
- Visual Design
- Expert
-
-
-
-
-
- Prototyping
- Advanced
-
-
-
-
-
- Interaction Design
- Advanced
-
-
-
+
-
+
+
-
+
+
-
+
-
-
+
+
diff --git a/public/scripts/language-toggle.js b/js/language-toggle.js
similarity index 100%
rename from public/scripts/language-toggle.js
rename to js/language-toggle.js
diff --git a/public/scripts/theme-toggle.js b/js/theme-toggle.js
similarity index 100%
rename from public/scripts/theme-toggle.js
rename to js/theme-toggle.js
diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index 7f48a94..0000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/favicon.svg b/public/favicon.svg
deleted file mode 100644
index f157bd1..0000000
--- a/public/favicon.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
diff --git a/src/pages/portfolio.astro b/src/pages/portfolio.astro
deleted file mode 100644
index dc3b9db..0000000
--- a/src/pages/portfolio.astro
+++ /dev/null
@@ -1,217 +0,0 @@
----
-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
-
-
-
-
-
-
-
-
-
-
- {projects.map((project) => (
-
-
-
-
{project.title}
-
{project.description}
-
- link
- {project.url}
-
-
-
- ))}
-
-
-
-
-
- Experience
-
- {experience.map((job) => (
-
-
-
{job.period}
-
{job.title}
-
{job.company}
-
{job.description}
-
- ))}
-
-
-
-
-
-
-
-