Files
b2d89f43-c570-49ff-ab9e-f1c…/src/pages/HomePage/sections/Features.tsx

65 lines
2.7 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "features" section.
import React from 'react';
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FeaturesSection(): React.JSX.Element {
return (
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesRevealCardsBento
tag="Portfolio"
title="Selected Projects"
description="A collection of software projects demonstrating my skills and problem-solving abilities."
items={[
{
title: "E-Commerce API",
description: "High performance API for retail.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-dark-home-office-with-laptop_53876-138150.jpg",
},
{
title: "Fintech Dashboard",
description: "Real-time analytics engine.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/technology-circuit-processor-innovation-network-concept_53876-124253.jpg",
},
{
title: "AI Image Generator",
description: "Integrated LLM-based image creation tool.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/cyber-security-concept-digital-art_23-2151637773.jpg",
},
{
title: "Cloud Monitoring Tool",
description: "Real-time resource tracking.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/community-cloud-storage-sync-secure_53876-124011.jpg",
},
{
title: "Mobile Banking App",
description: "Secure mobile financial platform.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/minimalistic-home-workspace-design_23-2148991453.jpg",
},
{
title: "Smart Logistics System",
description: "Automated delivery pathing.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/coffee-sticky-notes-near-digital-devices_23-2147929681.jpg",
},
{
title: "DevOps Toolkit",
description: "Automated deployment pipelines.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/developer-works-data-center-laptop_482257-76561.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}