Bob AI: Added two buttons under the portfolio section.

This commit is contained in:
kudinDmitriyUp
2026-06-02 20:38:32 +00:00
parent ff574f7e72
commit 3b402c6c16

View File

@@ -4,10 +4,11 @@
import React from 'react';
import FeaturesRevealCardsBentoSharp from '@/components/sections/features/FeaturesRevealCardsBentoSharp';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import Button from "@/components/ui/Button";
export default function PortfolioSection(): React.JSX.Element {
return (
<div id="portfolio" data-section="portfolio">
<div id="portfolio" data-section="portfolio" className="pb-24">
<SectionErrorBoundary name="portfolio">
<FeaturesRevealCardsBentoSharp
tag="Our Portfolio"
@@ -58,6 +59,10 @@ export default function PortfolioSection(): React.JSX.Element {
},
]}
/>
<div className="flex justify-center gap-4 mt-8">
<Button text="View All Projects" variant="primary" />
<Button text="Start Your Project" variant="secondary" />
</div>
</SectionErrorBoundary>
</div>
);