fix: storybook font rendering and shared fonts module #1

Merged
ilia merged 74 commits from feat/portfolio-setup into main 2026-05-18 18:45:22 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit b8b5e65497 - Show all commits
@@ -13,7 +13,7 @@ export default async function ExperienceSection() {
}); });
return ( return (
<div className="space-y-6"> <div className="space-y-6 max-w-section">
{items.map((exp) => ( {items.map((exp) => (
<ExperienceCard <ExperienceCard
key={exp.id} key={exp.id}
@@ -25,7 +25,7 @@ export default async function ProjectsSection() {
}); });
return ( return (
<div className="grid grid-cols-1 md:grid-cols-2 gap-6"> <div className="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-section">
{items.map((project) => ( {items.map((project) => (
<ProjectCard <ProjectCard
key={project.id} key={project.id}
@@ -20,7 +20,7 @@ export default async function SkillsSection() {
const categories = groupByKey(data.items, 'category'); const categories = groupByKey(data.items, 'category');
return ( return (
<div className="space-y-12"> <div className="space-y-12 max-w-section">
{Object.entries(categories).map(([category, items]) => ( {Object.entries(categories).map(([category, items]) => (
<div key={category} className="space-y-4"> <div key={category} className="space-y-4">
<h3 className="text-xl font-bold uppercase tracking-widest opacity-50">{category}</h3> <h3 className="text-xl font-bold uppercase tracking-widest opacity-50">{category}</h3>