diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a58e36b..dd05ee8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,25 +1,25 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; -import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; +import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; 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 { Hammer, Phone, Mail, MapPin, Clock, Users, TrendingUp, Zap, Facebook, Instagram, Linkedin } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Portfolio", id: "portfolio" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "Pricing", id: "#pricing" }, + { name: "Services", id: "/services" }, ]; const contactButton = { - text: "Call Now", href: "tel:804-938-0669"}; + text: "Get Started", href: "#contact"}; return ( ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 52e371d..a0cd7f1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,37 @@ 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"; +import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", 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", description: "Professional home services in Richmond, VA"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +