Update src/app/page.tsx

This commit is contained in:
2026-03-04 18:26:44 +00:00
parent f67688905d
commit 9a0bb50fd4

View File

@@ -9,7 +9,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Award, CheckCircle, Zap, Wrench, Package, TrendingUp, Star, HelpCircle, Facebook, Instagram, Linkedin } from "lucide-react";
import { Award, CheckCircle, Zap, Wrench, Package, TrendingUp, Star, HelpCircle, Facebook, Instagram, Linkedin, Zap as ZapBadge, Shield, Award as AwardBadge } from "lucide-react";
import Link from "next/link";
export default function HomePage() {
@@ -143,13 +143,13 @@ export default function HomePage() {
products={[
{
id: "1", brand: "AquaPro", name: "Variable Speed Pool Pump", price: "R4,500", rating: 5,
reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-swimming-pool-with-bed-deck-chair-umbrella-resort-travel-vacation_74190-7923.jpg?_wi=1", imageAlt: "AquaPro variable speed pool pump"},
reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-swimming-pool-with-bed-deck-chair-umbrella-resort-travel-vacation_74190-7923.jpg?_wi=1", imageAlt: "AquaPro variable speed pool pump - Energy Efficient, 5-Year Warranty"},
{
id: "2", brand: "SolarTech", name: "Solar Water Heater System", price: "R12,800", rating: 5,
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/view-water-tank-storage_23-2151748235.jpg", imageAlt: "SolarTech solar water heater"},
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/view-water-tank-storage_23-2151748235.jpg", imageAlt: "SolarTech solar water heater - Energy Efficient, 10-Year Warranty"},
{
id: "3", brand: "ClearFlow", name: "Multi-Stage Filtration Unit", price: "R3,200", rating: 5,
reviewCount: "289", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-swimming-pool-with-bed-deck-chair-umbrella-resort-travel-vacation_74190-7923.jpg?_wi=2", imageAlt: "ClearFlow multi-stage filtration system"},
reviewCount: "289", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-swimming-pool-with-bed-deck-chair-umbrella-resort-travel-vacation_74190-7923.jpg?_wi=2", imageAlt: "ClearFlow multi-stage filtration system - Durable Build, Lifetime Support"},
]}
/>
</div>
@@ -230,4 +230,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}