Merge version_2 into main #4
@@ -1,67 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Blue Pools | Premium Pool Construction & Solar Solutions",
|
||||
description: "Expert pool construction, solar energy systems, and maintenance services across South Africa. Transform your outdoor space with Blue Pools' 15+ years of excellence.",
|
||||
keywords: "pool construction, solar panels, pool maintenance, swimming pool, solar energy, South Africa, renewable energy",
|
||||
metadataBase: new URL("https://bluepools.co.za"),
|
||||
alternates: {
|
||||
canonical: "https://bluepools.co.za",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Blue Pools | Premium Pool & Solar Solutions",
|
||||
description: "Expert pool construction, solar energy systems, and professional maintenance. Transform your outdoor space today.",
|
||||
url: "https://bluepools.co.za",
|
||||
siteName: "Blue Pools",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Blue Pools | Premium Pool & Solar Solutions",
|
||||
description: "Expert pool construction and solar energy systems in South Africa",
|
||||
},
|
||||
};
|
||||
title: "Blue Pools | Premium Pool & Solar Solutions", description: "Transform your outdoor space with custom pool construction and solar energy solutions. Blue Pools delivers excellence in design, installation, and maintenance across South Africa."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1429,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user