Skip to content

Commit

Permalink
Update ProjectSection.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
appsaeed authored May 21, 2024
1 parent 97b91ee commit 0736099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/sections/ProjectSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import SectionDescription from "../../components/SectionDescription";
import SectionHeader from "../../components/SectionHeader";
import sections from "../../data/classNames/sections";
import projects from "../../data/projects";

import { cn } from '../../app/utilies';
export default function ProjectSection(props: JSX.HTMLAttributes<HTMLElement>) {
return (
<section class={`${sections.common} ${props.class}`} {...props}>
<section class={cn(sections.common, props.class)} {...props}>
<SectionHeader>Projects</SectionHeader>
<SectionDescription>
The following projects showcase my skills and experience through
Expand Down

0 comments on commit 0736099

Please sign in to comment.