diff --git a/src/app/tech-stack/components/TechStackCard.tsx b/src/app/tech-stack/components/TechStackCard.tsx index 07029b22..2b1c33a9 100644 --- a/src/app/tech-stack/components/TechStackCard.tsx +++ b/src/app/tech-stack/components/TechStackCard.tsx @@ -8,15 +8,15 @@ interface TechStackCardProps { export default function TechStackCard({ title, data }: TechStackCardProps) { return ( -
+
-

+

{title}

-
    +
      {data.map((element) => (
    • +
        {Object.keys(techStack).map((cardType, index) => (
      • +
        ); diff --git a/src/components/EditButton.tsx b/src/components/EditButton.tsx index 2bcdc862..94885b63 100644 --- a/src/components/EditButton.tsx +++ b/src/components/EditButton.tsx @@ -8,7 +8,7 @@ export default function EditButton({ title }: EditButtonProps) { return (