feat: add HomeStorySection component and ShowMoreIcon SVG icon
- Implemented HomeStorySection component to display project statistics and images. - Added ShowMoreIcon component for UI enhancement.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import { Icon } from '@/components/uikit/icons';
|
||||
import { ISectionTitleProps } from './sectionTitle';
|
||||
|
||||
export default function SectionTitle({
|
||||
@@ -11,9 +12,10 @@ export default function SectionTitle({
|
||||
className={`flex flex-col gap-4 ${reverseColor ? 'text-white' : 'text-gray-500'}`}
|
||||
>
|
||||
<div className={`flex items-center gap-2`}>
|
||||
<h3 className="text-sm tracking-[0.175rem]">{title}</h3>
|
||||
<Icon name="setting" className="text-primary" />
|
||||
<h3 className="text-sm leading-1 tracking-[0.175rem]">{title}</h3>
|
||||
</div>
|
||||
<h2 className="text-[3.25rem] font-extralight">
|
||||
<h2 className="text-[3.25rem] leading-14 font-extralight tracking-tight">
|
||||
{description}
|
||||
{description_bold && (
|
||||
<strong className="block font-bold">{description_bold}</strong>
|
||||
|
||||
Reference in New Issue
Block a user