Element Bug Fixes

This commit is contained in:
2025-12-01 05:18:27 +00:00
parent 1167c686e2
commit e0bcba74d5
24 changed files with 875 additions and 228 deletions
+7
View File
@@ -6,6 +6,7 @@ import { user, skills } from './user';
export const navigation = [
{ name: 'home', path: '/', icon: '~' },
{ name: 'about', path: '/about', icon: 'mdi:account' },
{ name: 'portfolio', path: '/portfolio', icon: '📁' },
// { name: 'models', path: '/models', icon: '🎨' },
{ name: 'projects', path: '/projects', icon: '🏆' },
@@ -45,6 +46,12 @@ export const pageMeta: Record<string, PageMeta> = {
icon: 'mdi:home',
keywords: ['home', 'portfolio', 'about']
},
'/about': {
title: `${user.displayname} — About`,
description: `About — ${user.title} portfolio and projects.`,
icon: 'mdi:account',
keywords: ['about', 'portfolio', 'about']
},
'/portfolio': {
title: `${user.displayname} — Portfolio`,
description: 'Selected projects, highlights and case studies.',
+2
View File
@@ -134,6 +134,7 @@ export const pageSpeedSettings: Record<string, SpeedPreset | number> = {
// 'models': 'instant', // No typing animation
// 'hackathons': 0.5, // Custom: 2x faster than normal
'home': 'fast',
'about': 'normal',
'portfolio': 'instant',
'models': 'fast',
'projects': 'fast',
@@ -147,6 +148,7 @@ export const pageAutoscrollSettings: Record<string, boolean> = {
// 'home': true, // Enable autoscroll
// 'portfolio': false, // Disable autoscroll
'home': true,
'about': false,
'portfolio': false,
'models': false,
'projects': false,
+1 -1
View File
@@ -3,7 +3,7 @@
// ============================================================================
export const user = {
name: 'Gagan M',
name: 'Gagan "Adith" M',
displayname: 'Sir Blob',
username: 'sirblob',
hostname: 'engineering',