40 lines
1.6 KiB
TypeScript
40 lines
1.6 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "about" section.
|
|
|
|
import React from 'react';
|
|
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
|
import { Award, MapPin, Shield, Truck, Users } from "lucide-react";
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function AboutSection(): React.JSX.Element {
|
|
return (
|
|
<div id="about" data-section="about">
|
|
<SectionErrorBoundary name="about">
|
|
<AboutFeaturesSplit
|
|
tag="About Us"
|
|
title="Quality Mining Excellence"
|
|
description="With years of dedication to operational efficiency, we pride ourselves on delivering top-tier aggregate materials that build the foundation of our community. We are locally operated, fully certified, and committed to safety."
|
|
items={[
|
|
{
|
|
icon: Shield,
|
|
title: "Safety First",
|
|
description: "Rigorous safety standards across all operations.",
|
|
},
|
|
{
|
|
icon: Truck,
|
|
title: "Reliable Delivery",
|
|
description: "Efficient logistics to ensure materials arrive on time.",
|
|
},
|
|
{
|
|
icon: Award,
|
|
title: "Expert Production",
|
|
description: "High quality standards for all processed products.",
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/large-truck-carrying-sand-platinum-mining-site-africa_181624-60189.jpg"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|