diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2c5402e..e616944 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,47 +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"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
export const metadata: Metadata = {
- title: "Home Renovation & Construction Services in Roodepoort", description: "Professional home renovations, bathroom remodels, kitchen upgrades, and roofing services in Roodepoort. Trusted local contractors with quality craftsmanship and transparent pricing.", keywords: "home renovation Roodepoort, bathroom remodeling, kitchen renovation, roof repair, construction services, local contractor", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "BuildRight - Home Renovation Experts in Roodepoort", description: "Transform your home with trusted local construction services", type: "website", siteName: "BuildRight Construction"},
-};
+ title: "BuildRight - Home Renovation & Construction", description: "Expert home renovation and construction services in Roodepoort, Johannesburg. Quality workmanship, transparent pricing, and reliable service."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0776546..51f62aa 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,7 +9,7 @@ import ProductCardThree from "@/components/sections/product/ProductCardThree";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
-import { Hammer, Building, CheckCircle, DollarSign, Clock, MapPin, Wrench, Image, Phone, Star, Hammer as HammerIcon, Droplet, UtensilsCrossed, Drill, Brush, Paintbrush, Waves, DoorOpen, AlertTriangle } from "lucide-react";
+import { Hammer, Building, CheckCircle, DollarSign, Clock, MapPin, Wrench, Image, Phone, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,9 +29,10 @@ export default function LandingPage() {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index 0d5de0d..5b51b83 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -28,6 +28,7 @@ export default function ServicesPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Services", id: "/services" },
+ { name: "Reviews", id: "/reviews" },
{ name: "Projects", id: "projects" },
{ name: "Contact", id: "contact" }
]}