fixed design project page

This commit is contained in:
2026-04-16 10:47:28 +02:00
parent 5e1368f790
commit 2bf8bae473
12 changed files with 65 additions and 65 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
type Props = {
type props = {
technologies: string[];
};
export function ProjectTechnologies({ technologies }: Props) {
export function ProjectTechnologies({ technologies }: props) {
return (
<section className="pb-16">
<p className="mb-4 text-sm text-neutral-500">Technologies</p>
@@ -11,7 +11,7 @@ export function ProjectTechnologies({ technologies }: Props) {
{technologies.map((tech) => (
<span
key={tech}
className="rounded-full bg-[#2b160f] px-4 py-2 text-sm text-white"
className="rounded-full bg-brand-brown px-4 py-2 text-sm text-white"
>
{tech}
</span>