diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index a58e36b..976926f 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,26 +1,22 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
-import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
-import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
-import FaqSplitText from "@/components/sections/faq/FaqSplitText";
-import FooterCard from "@/components/sections/footer/FooterCard";
-import { Hammer, Wrench, Droplet, Paintbrush, Zap, MonitorPlay, Armchair, Layers, TrendingUp, Clock, Users, CheckCircle, Star, Facebook, Instagram, Phone } from "lucide-react";
+import ContactFaq from "@/components/sections/contact/ContactFaq";
+import FooterSimple from "@/components/sections/footer/FooterSimple";
+import { Hammer, Wrench, Phone, Mail, MessageCircle, CheckCircle } from "lucide-react";
export default function ContactPage() {
const navItems = [
- { name: "Home", id: "home" },
+ { name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
- { name: "Portfolio", id: "portfolio" },
+ { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
];
- const contactButton = {
- text: "Call Now", href: "tel:804-938-0669"};
-
return (
-
-
-
-
-
-
-
-
+
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 52e371d..9d48c10 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1433 +1,41 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Mulish } 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"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
+import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
+import { Tag } from "@/components/tag/Tag";
const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const mulish = Mulish({
- variable: "--font-mulish",
- subsets: ["latin"],
+ variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Earl Boys Services - Professional Home Services in Richmond, VA",
- description: "Expert home services in Richmond, VA. Plumbing, painting, electrical, flooring & more. 15 years trusted service. Call 804-938-0669 for free estimates.",
- keywords: "home services Richmond VA, plumbing, painting, electrical, home repair, maintenance",
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Earl Boys Services - Home Services in Richmond, VA",
- description: "Professional home services including plumbing, painting, electrical, flooring & more.",
- type: "website",
- siteName: "Earl Boys Services LLC",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/young-cute-family-repairs-room_1157-24897.jpg",
- alt: "Earl Boys Services - Professional Home Services",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Earl Boys Services - Home Services in Richmond, VA",
- description: "Professional home services including plumbing, painting, electrical, flooring & more. Call 804-938-0669",
- images: ["http://img.b2bpic.net/free-photo/young-cute-family-repairs-room_1157-24897.jpg"],
- },
-};
+ title: "Earl Boys Services - Professional Home Services in Richmond VA", description: "Earl Boys Services offers professional home services including plumbing, electrical, painting, and general maintenance in Richmond, VA and surrounding areas."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
+
+
{children}
-
+